diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2019-12-05 22:11:08 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2019-12-05 22:11:08 (GMT) |
commit | 8c9b8047ea6aafa8d2249238658d0c29724adb61 (patch) | |
tree | 68ef2a30cab4485b0568ba4c9dd648208ea96175 /src/H5Spkg.h | |
parent | bdbe010fd3fe52c2d6c305a027eb56346f5017e8 (diff) | |
parent | 1e10b3212ed5904b69d9f4c4bcb4d0122dfd7c77 (diff) | |
download | hdf5-8c9b8047ea6aafa8d2249238658d0c29724adb61.zip hdf5-8c9b8047ea6aafa8d2249238658d0c29724adb61.tar.gz hdf5-8c9b8047ea6aafa8d2249238658d0c29724adb61.tar.bz2 |
Merge pull request #2079 in HDFFV/hdf5 from ~VCHOI/my_third_fork:bugfix/reference_ver_hyperslab_ver to develop
* commit '1e10b3212ed5904b69d9f4c4bcb4d0122dfd7c77':
Two fixes: (1) Set the version for reference datatype messge to H5O_DTYPE_VERSION_4. (2) Verify the decoded version for hyperslab selection.
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r-- | src/H5Spkg.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h index ba60cbf..e139bce 100644 --- a/src/H5Spkg.h +++ b/src/H5Spkg.h @@ -41,9 +41,10 @@ #define H5S_SELECT_FLAG_BITS (H5S_HYPER_REGULAR) /* Versions for H5S_SEL_HYPER selection info */ -#define H5S_HYPER_VERSION_1 1 -#define H5S_HYPER_VERSION_2 2 -#define H5S_HYPER_VERSION_3 3 +#define H5S_HYPER_VERSION_1 1 +#define H5S_HYPER_VERSION_2 2 +#define H5S_HYPER_VERSION_3 3 +#define H5S_HYPER_VERSION_LATEST H5S_HYPER_VERSION_3 /* Versions for H5S_SEL_POINTS selection info */ #define H5S_POINT_VERSION_1 1 |