Skip to content

Commit 49e1972

Browse files
committed
BUG: Fix invalid combination of library lower and upper bounds
Signed-off-by: Michael Jackson <mike.jackson@bluequartz.net>
1 parent 0fcab55 commit 49e1972

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set(CMAKE_CXX_STANDARD 17)
99
set(CMAKE_CXX_STANDARD_REQUIRED ON)
1010
set(CMAKE_CXX_EXTENSIONS OFF)
1111

12-
project(H5Support LANGUAGES C CXX VERSION 1.0.8)
12+
project(H5Support LANGUAGES C CXX VERSION 1.0.12)
1313

1414
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
1515
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

Source/H5Support/H5Utilities.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,17 @@
5656

5757
#if(H5_VERS_MINOR == 10)
5858
#define HDF5_VERSION_LIB_LOWER_BOUNDS H5F_LIBVER_V110
59-
#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_V110
59+
#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_LATEST
6060
#endif
6161

6262
#if(H5_VERS_MINOR == 12)
63-
#define HDF5_VERSION_LIB_LOWER_BOUNDS H5F_LIBVER_V110
64-
#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_V18
63+
#define HDF5_VERSION_LIB_LOWER_BOUNDS H5F_LIBVER_V112
64+
#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_LATEST
6565
#endif
6666

6767
#if(H5_VERS_MINOR == 14)
68-
#define HDF5_VERSION_LIB_LOWER_BOUNDS H5F_LIBVER_V110
69-
#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_V110
68+
#define HDF5_VERSION_LIB_LOWER_BOUNDS H5F_LIBVER_V114
69+
#define HDF5_VERSION_LIB_UPPER_BOUNDS H5F_LIBVER_LATEST
7070
#endif
7171

7272
#ifndef HDF5_VERSION_LIB_LOWER_BOUNDS

0 commit comments

Comments
 (0)