From b8df7003bb844bbf7ce8995174b07ee72de83925 Mon Sep 17 00:00:00 2001 From: Michael Jackson Date: Thu, 20 Jul 2023 12:27:25 -0400 Subject: [PATCH] BUG: Fix invalid combination of library lower and upper bounds Signed-off-by: Michael Jackson --- Source/H5Support/H5Utilities.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/H5Support/H5Utilities.h b/Source/H5Support/H5Utilities.h index 384d78f..f9b9680 100644 --- a/Source/H5Support/H5Utilities.h +++ b/Source/H5Support/H5Utilities.h @@ -56,17 +56,17 @@ #if(H5_VERS_MINOR == 10) #define HDF5_VERSION_LIB_LOWER_BOUNDS H5F_LIBVER_V110 -#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_V110 +#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_LATEST #endif #if(H5_VERS_MINOR == 12) -#define HDF5_VERSION_LIB_LOWER_BOUNDS H5F_LIBVER_V110 -#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_V18 +#define HDF5_VERSION_LIB_LOWER_BOUNDS H5F_LIBVER_V112 +#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_LATEST #endif #if(H5_VERS_MINOR == 14) -#define HDF5_VERSION_LIB_LOWER_BOUNDS H5F_LIBVER_V110 -#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_V110 +#define HDF5_VERSION_LIB_LOWER_BOUNDS H5F_LIBVER_V114 +#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_LATEST #endif #ifndef HDF5_VERSION_LIB_LOWER_BOUNDS