summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-03-19 20:33:57 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-03-19 20:33:57 (GMT)
commit74dc8966918d58b3ba704880e4675afee89f535a (patch)
treef1e03c9c98a09ffcfc375409294a926bfb020f38 /src
parentcac405283f0dd6e6aa528cd86303429ec9bb3fd2 (diff)
downloadhdf5-74dc8966918d58b3ba704880e4675afee89f535a.zip
hdf5-74dc8966918d58b3ba704880e4675afee89f535a.tar.gz
hdf5-74dc8966918d58b3ba704880e4675afee89f535a.tar.bz2
[svn-r26485] Description:
Remove the ULONG_TO_FLOAT_ACCURATE macro/define, we no longer support the Sandia system where it was necessary. Tested on: Mac OSX 10.10.2 (amazon) w/serial & parallel (h5committest not necessary on this branch)
Diffstat (limited to 'src')
-rw-r--r--src/H5Tpkg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h
index 3b56ac4..24debe9 100644
--- a/src/H5Tpkg.h
+++ b/src/H5Tpkg.h
@@ -127,7 +127,7 @@
/* Define an internal macro for converting unsigned long to float.
* Pathscale compiler on Sandia's Linux machine has some problem.
* 64-bit Solaris does different rounding. */
-#if (H5_WANT_DATA_ACCURACY && H5_ULONG_TO_FLOAT_ACCURATE && H5_ULONG_TO_FP_BOTTOM_BIT_ACCURATE) || \
+#if (H5_WANT_DATA_ACCURACY && H5_ULONG_TO_FP_BOTTOM_BIT_ACCURATE) || \
(!H5_WANT_DATA_ACCURACY)
#define H5T_CONV_INTERNAL_ULONG_FLT 1
#endif