diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2021-07-27 20:44:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 20:44:05 (GMT) |
commit | cfcdf215187653703a21f1f99cc18e207138c39b (patch) | |
tree | 5b4e3367e9b715533ac6a4fe01ec34bc93ee5d20 /src/H5private.h | |
parent | 74f1590d47acd41cd9aea8d9f6be52a5947ee5af (diff) | |
download | hdf5-cfcdf215187653703a21f1f99cc18e207138c39b.zip hdf5-cfcdf215187653703a21f1f99cc18e207138c39b.tar.gz hdf5-cfcdf215187653703a21f1f99cc18e207138c39b.tar.bz2 |
Remove version-check for relnum in H5check. (#812)
* Remove version-check for relnum in H5check.
* Add in release exception code check
* Fix typos
* Fix more typos
* Rework comments
* format change
* format whitespace
* Library version must be less than or equal to headers
* Need the NOT version of the compare
* Enable release+1 check for PASS
* Add release note
* Update note
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5private.h b/src/H5private.h index 7823bfc..802dd90 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -2169,7 +2169,7 @@ H5_DLL herr_t H5CX_pop(hbool_t update_dxpl_props); * Use this macro for API functions that shouldn't perform _any_ initialization * of the library or an interface, or push themselves on the function * stack, or perform tracing, etc. This macro _only_ sanity checks the - * API name itself. Examples are: H5TSmutex_acquire, + * API name itself. Examples are: H5TSmutex_acquire, * */ #define FUNC_ENTER_API_NAMECHECK_ONLY \ @@ -2265,7 +2265,7 @@ H5_DLL herr_t H5CX_pop(hbool_t update_dxpl_props); * Use this macro for non-API functions that shouldn't perform _any_ initialization * of the library or an interface, or push themselves on the function * stack, or perform tracing, etc. This macro _only_ sanity checks the - * API name itself. Examples are private routines in the H5TS package. + * API name itself. Examples are private routines in the H5TS package. * */ #define FUNC_ENTER_NOAPI_NAMECHECK_ONLY \ @@ -2343,7 +2343,7 @@ H5_DLL herr_t H5CX_pop(hbool_t update_dxpl_props); * Use this macro for non-API functions that shouldn't perform _any_ initialization * of the library or an interface, or push themselves on the function * stack, or perform tracing, etc. This macro _only_ sanity checks the - * API name itself. Examples are static routines in the H5TS package. + * API name itself. Examples are static routines in the H5TS package. * */ #define FUNC_ENTER_STATIC_NAMECHECK_ONLY \ |