diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-03-20 19:08:33 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-03-20 19:08:33 (GMT) |
commit | 57393bc0483fe164d3c44129ff786e1333406ce2 (patch) | |
tree | 0667eaca010dc7d4d590620cb65ffa451fd8f84a /src/H5T.c | |
parent | 7dae7ce0b9964aeb1084d2413f8795216ea6aa58 (diff) | |
download | hdf5-57393bc0483fe164d3c44129ff786e1333406ce2.zip hdf5-57393bc0483fe164d3c44129ff786e1333406ce2.tar.gz hdf5-57393bc0483fe164d3c44129ff786e1333406ce2.tar.bz2 |
[svn-r26508] Description:
Remove HW_FP_TO_LLONG_NOT_WORKS macro/define, it was only addressing
Windows .NET 2003 compiler issues.
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
@@ -1276,10 +1276,8 @@ H5T_init_interface(void) status |= H5T_register(H5T_PERS_HARD, "ldbl_ulong", native_ldouble, native_ulong, H5T__conv_ldouble_ulong, H5AC_dxpl_id, FALSE); /* From floats to long long */ -#if H5T_CONV_INTERNAL_FP_LLONG status |= H5T_register(H5T_PERS_HARD, "flt_llong", native_float, native_llong, H5T__conv_float_llong, H5AC_dxpl_id, FALSE); status |= H5T_register(H5T_PERS_HARD, "dbl_llong", native_double, native_llong, H5T__conv_double_llong, H5AC_dxpl_id, FALSE); -#endif /* H5T_CONV_INTERNAL_FP_LLONG */ #ifdef H5T_CONV_INTERNAL_LDOUBLE_LLONG status |= H5T_register(H5T_PERS_HARD, "ldbl_llong", native_ldouble, native_llong, H5T__conv_ldouble_llong, H5AC_dxpl_id, FALSE); #endif /* H5T_CONV_INTERNAL_LDOUBLE_LLONG */ |