diff options
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 8a029cb..08694a6 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -411,22 +411,7 @@ # error "nothing appropriate for int32_t" #endif -#if H5_SIZEOF_UINT32_T>=4 -#elif H5_SIZEOF_SHORT>=4 - typedef short uint32_t; -# undef H5_SIZEOF_UINT32_T -# define H5_SIZEOF_UINT32_T H5_SIZEOF_SHORT -#elif H5_SIZEOF_INT>=4 - typedef unsigned int uint32_t; -# undef H5_SIZEOF_UINT32_T -# define H5_SIZEOF_UINT32_T H5_SIZEOF_INT -#elif H5_SIZEOF_LONG>=4 - typedef unsigned long uint32_t; -# undef H5_SIZEOF_UINT32_T -# define H5_SIZEOF_UINT32_T H5_SIZEOF_LONG -#else -# error "nothing appropriate for uint32_t" -#endif +/* Definition of uint32_t was moved to H5public.h */ /* Definition of int64_t was moved to H5public.h */ /* Definition of uint64_t was moved to H5public.h */ |