mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
ed663577a5
Code cleanup for better compatibility with C++ compilers Description: C++ compilers are choking on our C code, for various reasons: we used our UNUSED macro incorrectly when referring to pointer types we used various C++ keywords as variables, etc. we incremented enum's with the ++ operator. Solution: Changed variables, etc.to avoid C++ keywords (new, class, typename, typeid, template) Fixed usage of UNUSED macro from this: char UNUSED *c to this: char * UNUSED c Switched the enums from x++ to x=x+1 Platforms tested: FreeBSD 4.4 (hawkwind) |
||
---|---|---|
.. | ||
Attributes.txt | ||
Dependencies | ||
h5_attribute.c | ||
h5_chunk_read.c | ||
h5_compound.c | ||
h5_drivers.c | ||
h5_extend_write.c | ||
h5_group.c | ||
h5_mount.c | ||
h5_read.c | ||
h5_reference.c | ||
h5_select.c | ||
h5_write.c | ||
Makefile.in | ||
ph5example.c | ||
run_examples.sh |