diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-03-19 21:59:19 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-03-19 21:59:19 (GMT) |
commit | d63acf93b96364d65f10856c02aab7dc305e929a (patch) | |
tree | ce46fc31b45bd3a2cead90f4fbbc803298030f6c /src/H5T.c | |
parent | cea7454bef02d2c6656607703c122885c95c2fc6 (diff) | |
download | hdf5-d63acf93b96364d65f10856c02aab7dc305e929a.zip hdf5-d63acf93b96364d65f10856c02aab7dc305e929a.tar.gz hdf5-d63acf93b96364d65f10856c02aab7dc305e929a.tar.bz2 |
[svn-r26492] Description:
Remove the FP_TO_ULLONG_ACCURATE and FP_TO_ULLONG_RIGHT_MAXIMUM
macros/defines, which were added to address problems with older PGI
compilers and HP-UX systems and are no longer supported.
Tested on:
MacOSX/64 10.10.2 (amazon) w/serial & parallel
(h5committest not required on this branch)
Diffstat (limited to 'src/H5T.c')
-rw-r--r-- | src/H5T.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1291,10 +1291,8 @@ H5T_init_interface(void) #endif /* H5T_CONV_INTERNAL_LDOUBLE_LLONG */ /* From floats to unsigned long long */ -#if H5T_CONV_INTERNAL_FP_ULLONG status |= H5T_register(H5T_PERS_HARD, "flt_ullong", native_float, native_ullong, H5T__conv_float_ullong, H5AC_dxpl_id, FALSE); status |= H5T_register(H5T_PERS_HARD, "dbl_ullong", native_double, native_ullong, H5T__conv_double_ullong, H5AC_dxpl_id, FALSE); -#endif /* H5T_CONV_INTERNAL_FP_ULLONG */ #if H5T_CONV_INTERNAL_LDOUBLE_ULLONG status |= H5T_register(H5T_PERS_HARD, "ldbl_ullong", native_ldouble, native_ullong, H5T__conv_ldouble_ullong, H5AC_dxpl_id, FALSE); #endif /* H5T_CONV_INTERNAL_LDOUBLE_ULLONG */ |