Skip to content

Commit

Permalink
BUG: Fix invalid combination of library lower and upper bounds
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Jackson <mike.jackson@bluequartz.net>
  • Loading branch information
imikejackson committed Jul 20, 2023
1 parent 0fcab55 commit b8df700
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Source/H5Support/H5Utilities.h
Expand Up @@ -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
Expand Down

0 comments on commit b8df700

Please sign in to comment.