[svn-r10707] Purpose:

bug fix, the wrong setting at H5public.h causes library failed to be compiled on windows.

Description:
"long long" needs to be changed to long_long since "long long" can not be recongized on windows.

Solution:

Platforms tested:
MSVS 6.0 on windows XP
Linux 2.4 on heping

Misc. update:
This commit is contained in:
MuQun Yang 2005-05-02 11:01:15 -05:00
parent 117c3740b5
commit aab3884c94

View File

@ -185,7 +185,7 @@ typedef ssize_t hssize_t;
# endif /* H5_HAVE_PARALLEL */
#elif H5_SIZEOF_LONG_LONG>=8
typedef unsigned long_long haddr_t;
# define HADDR_UNDEF ((haddr_t)(long long)(-1))
# define HADDR_UNDEF ((haddr_t)(long_long)(-1))
# define H5_SIZEOF_HADDR_T H5_SIZEOF_LONG_LONG
# ifdef H5_HAVE_PARALLEL
# define HADDR_AS_MPI_TYPE MPI_LONG_LONG_INT