diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-06-12 19:00:30 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-06-12 19:00:30 (GMT) |
commit | 5961f1ef5f78fecf8e459411549ff8733af81008 (patch) | |
tree | 4e661c2cb3557eb82e018f8d3f605753fa0977a5 | |
parent | af52f635a99a46629c3cb7eac0f3d5d47059cada (diff) | |
download | hdf5-5961f1ef5f78fecf8e459411549ff8733af81008.zip hdf5-5961f1ef5f78fecf8e459411549ff8733af81008.tar.gz hdf5-5961f1ef5f78fecf8e459411549ff8733af81008.tar.bz2 |
[svn-r3999] Purpose:
Code cleanup
Description:
float32 & float64 typedefs are not used in HDF5 library and are causing
conflicts with Kent's h4toh5 library code.
Solution:
Take the float32 & float64 typedefs out
Platforms tested:
FreeBSD 4.3 (hawkwind)
-rw-r--r-- | src/H5private.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/H5private.h b/src/H5private.h index 7490533..7fc963e 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -392,23 +392,6 @@ # error "nothing appropriate for uint64_t" #endif -#if SIZEOF_FLOAT>=4 -typedef float float32; -#elif SIZEOF_DOUBLE>=4 -typedef double float32; -#else -# error "nothing appropriate for float32" -#endif - -/* Bias float64 toward using double - QAK */ -#if SIZEOF_DOUBLE>=8 -typedef double float64; -#elif SIZEOF_FLOAT>=8 -typedef float float64; -#else -# error "nothing appropriate for float64" -#endif - /* * Define a type for generic integers. Use this instead of `int' to * show that some thought went into the algorithm. |