diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-10-02 17:08:28 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-10-02 17:08:28 (GMT) |
commit | 79bc4a9b03a86fa58edc0abf8e83fce6e68bab38 (patch) | |
tree | 25a0e2f751cbced605cbbecae68752515bb99b72 /src/H5private.h | |
parent | 22a3d4b0c9d7fede5be19f736b9f9f4dfdb0aa0e (diff) | |
download | hdf5-79bc4a9b03a86fa58edc0abf8e83fce6e68bab38.zip hdf5-79bc4a9b03a86fa58edc0abf8e83fce6e68bab38.tar.gz hdf5-79bc4a9b03a86fa58edc0abf8e83fce6e68bab38.tar.bz2 |
[svn-r12703] Using int64_t in H5Lpublic.h caused errors on Windows, where int64_t is only
defined in H5private.h.
Moved definition of int64_t from H5private.h to H5public.h as a temporary
solution.
Tested on heping and Windows (windows also needed H5Gdense.c and H5Gbtree2.c
to be added to hdf5 project).
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/H5private.h b/src/H5private.h index 254c2eb..3f523e1 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -424,22 +424,7 @@ # error "nothing appropriate for uint32_t" #endif -#if H5_SIZEOF_INT64_T>=8 -#elif H5_SIZEOF_INT>=8 - typedef int int64_t; -# undef H5_SIZEOF_INT64_T -# define H5_SIZEOF_INT64_T H5_SIZEOF_INT -#elif H5_SIZEOF_LONG>=8 - typedef long int64_t; -# undef H5_SIZEOF_INT64_T -# define H5_SIZEOF_INT64_T H5_SIZEOF_LONG -#elif H5_SIZEOF_LONG_LONG>=8 - typedef long_long int64_t; -# undef H5_SIZEOF_INT64_T -# define H5_SIZEOF_INT64_T H5_SIZEOF_LONG_LONG -#else -# error "nothing appropriate for int64_t" -#endif +/* Definition of int64_t was moved to H5public.h */ #if H5_SIZEOF_UINT64_T>=8 #elif H5_SIZEOF_INT>=8 |