diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-29 20:31:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-29 20:31:29 (GMT) |
commit | 55f8e19fc7ba1b59f5b435a1e1949457907eff40 (patch) | |
tree | 4fa7070073fc856d1237271a5bb77f3f9170f107 /windows | |
parent | abe7368338f5700025b24dc14be377ca024b68a1 (diff) | |
download | hdf5-55f8e19fc7ba1b59f5b435a1e1949457907eff40.zip hdf5-55f8e19fc7ba1b59f5b435a1e1949457907eff40.tar.gz hdf5-55f8e19fc7ba1b59f5b435a1e1949457907eff40.tar.bz2 |
[svn-r10699] Purpose:
Code cleanup
Description:
Switch name & logic from H5_LLONG_TO_FP_CAST_BROKEN to
H5_LLONG_TO_FP_CAST_WORKS, to better match the rest of the library.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'windows')
-rwxr-xr-x | windows/src/H5pubconf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/windows/src/H5pubconf.h b/windows/src/H5pubconf.h index 6e2bf6a..f00edb4 100755 --- a/windows/src/H5pubconf.h +++ b/windows/src/H5pubconf.h @@ -101,14 +101,14 @@ in the file file_io.win32.c and including it on the projects #define H5_HAVE_FUNCTION 1 #define H5_ULLONG_TO_FP_CAST_WORKS 1 #if defined __INTEL_COMPILER -#define H5_LLONG_TO_FP_CAST_BROKEN +#undef H5_LLONG_TO_FP_CAST_WORKS #else -#undef H5_LLONG_TO_FP_CAST_BROKEN +#define H5_LLONG_TO_FP_CAST_WORKS #endif #else #undef H5_HAVE_FUNCTION #undef H5_ULLONG_TO_FP_CAST_WORKS -#undef H5_LLONG_TO_FP_CAST_BROKEN +#define H5_LLONG_TO_FP_CAST_WORKS #endif #define H5_FC_FUNC_(name, NAME) NAME |