summaryrefslogtreecommitdiffstats
path: root/src/H5T.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-03-27 22:12:22 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-03-27 22:12:22 (GMT)
commit46f59e4fd4309862727dc72409476fdb76239961 (patch)
tree0ca5b5de357e9f632ee7a8fed9c31a761208b0dd /src/H5T.c
parentfe01716dbc8443764542777d22b1252716293884 (diff)
downloadhdf5-46f59e4fd4309862727dc72409476fdb76239961.zip
hdf5-46f59e4fd4309862727dc72409476fdb76239961.tar.gz
hdf5-46f59e4fd4309862727dc72409476fdb76239961.tar.bz2
[svn-r26630] Description:
Bring r26595 from trunk to 1.8 branch: Bring r26494 from autotools_rework branch back to trunk: Remove the LDOUBLE_TO_UINT_ACCURATE macro/define, it was addressing problems with older Intel compilers on Linux that are no longer supported. Tested on: Linux/32 2.6.18 (jam) w/serial & parallel (Daily tested on trunk for 2+ days)
Diffstat (limited to 'src/H5T.c')
-rw-r--r--src/H5T.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/H5T.c b/src/H5T.c
index 01911e1..029049d 100644
--- a/src/H5T.c
+++ b/src/H5T.c
@@ -1270,9 +1270,7 @@ H5T_init_interface(void)
/* From floats to unsigned int */
status |= H5T_register(H5T_PERS_HARD, "flt_uint", native_float, native_uint, H5T__conv_float_uint, H5AC_dxpl_id, FALSE);
status |= H5T_register(H5T_PERS_HARD, "dbl_uint", native_double, native_uint, H5T__conv_double_uint, H5AC_dxpl_id, FALSE);
-#if H5T_CONV_INTERNAL_LDOUBLE_UINT
status |= H5T_register(H5T_PERS_HARD, "ldbl_uint", native_ldouble, native_uint, H5T__conv_ldouble_uint, H5AC_dxpl_id, FALSE);
-#endif /* H5T_CONV_INTERNAL_LDOUBLE_UINT */
status |= H5T_register(H5T_PERS_HARD, "flt_long", native_float, native_long, H5T__conv_float_long, H5AC_dxpl_id, FALSE);
status |= H5T_register(H5T_PERS_HARD, "dbl_long", native_double, native_long, H5T__conv_double_long, H5AC_dxpl_id, FALSE);