summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-03-20 17:05:00 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-03-20 17:05:00 (GMT)
commit3344302a1e3ef8614baf283e51738537782f1275 (patch)
tree9111bcde4add60e932714578ad93f7fbdddefbc1 /src
parentb08160e38b0d722bb2a0ba2d33347e18e51ed1b6 (diff)
downloadhdf5-3344302a1e3ef8614baf283e51738537782f1275.zip
hdf5-3344302a1e3ef8614baf283e51738537782f1275.tar.gz
hdf5-3344302a1e3ef8614baf283e51738537782f1275.tar.bz2
[svn-r26501] Desscription:
Remove ULLONG_TO_LDOUBLE_PRECISION macro/define, as it's targeting bugs in the FreeBSD and Cygwin compilers. Tested on: MacOSX/64 10.10.2 (amazon) w/serial & parallel (h5committest not required on this branch)
Diffstat (limited to 'src')
-rw-r--r--src/H5Tpkg.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h
index ffcfe0a..ab64fdc 100644
--- a/src/H5Tpkg.h
+++ b/src/H5Tpkg.h
@@ -135,8 +135,7 @@
* not support unsigned long long. For FreeBSD(sleipnir), the last 2 bytes of mantissa are lost when
* compiler tries to do the conversion. For Cygwin, compiler doesn't do rounding correctly.
* Mac OS 10.4 gives some incorrect result. */
-#if (H5_WANT_DATA_ACCURACY && \
- defined(H5_ULLONG_TO_LDOUBLE_PRECISION) && defined(H5_LLONG_TO_LDOUBLE_CORRECT)) || (!H5_WANT_DATA_ACCURACY)
+#if (H5_WANT_DATA_ACCURACY && defined(H5_LLONG_TO_LDOUBLE_CORRECT)) || (!H5_WANT_DATA_ACCURACY)
#define H5T_CONV_INTERNAL_ULLONG_LDOUBLE 1
#endif