diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/H5.c | 3 | ||||
-rw-r--r-- | src/H5public.h | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -322,12 +322,13 @@ done: * *------------------------------------------------------------------------- */ -herr_t +herr_t H5garbage_collect(void) { herr_t ret_value = SUCCEED; FUNC_ENTER_API(H5garbage_collect, FAIL); + H5TRACE0("e",""); /* Call the garbage collection routines in the library */ H5FL_garbage_coll(); diff --git a/src/H5public.h b/src/H5public.h index a7b3286..addc926 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -73,10 +73,10 @@ extern "C" { /* Version numbers */ #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 5 /* For minor interface/format changes */ -#define H5_VERS_RELEASE 45 /* For tweaks, bug-fixes, or development */ +#define H5_VERS_RELEASE 46 /* For tweaks, bug-fixes, or development */ #define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.5.45" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.5.46" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) |