diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-05-20 14:04:09 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-05-20 14:04:09 (GMT) |
commit | ff84fb1be3806557e96ef4782bfe784d7fcb408e (patch) | |
tree | 5722c26a9581749bd33a68c3e81dbcc91e7e74bb /src/H5Ipublic.h | |
parent | 3c1708531d38568bc993394a82c0e1ff0bce8126 (diff) | |
download | hdf5-ff84fb1be3806557e96ef4782bfe784d7fcb408e.zip hdf5-ff84fb1be3806557e96ef4782bfe784d7fcb408e.tar.gz hdf5-ff84fb1be3806557e96ef4782bfe784d7fcb408e.tar.bz2 |
Brought H5I, H5Z, and some of H5PL in line with develop/1.12.
Diffstat (limited to 'src/H5Ipublic.h')
-rw-r--r-- | src/H5Ipublic.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Ipublic.h b/src/H5Ipublic.h index c737bbe..7acca3a 100644 --- a/src/H5Ipublic.h +++ b/src/H5Ipublic.h @@ -30,8 +30,8 @@ * When adding types here, add a section to the 'misc19' test in test/tmisc.c * to verify that the H5I{inc|dec|get}_ref() routines work correctly with it. * - * NOTE: H5I_REFERENCE is not used by the library and has been deprecated - * with a tentative removal version of 1.12.0. (DER, July 2017) + * NOTE: H5I_REFERENCE is not used by the library and was removed + * in HDF5 1.12.0. */ typedef enum H5I_type_t { H5I_UNINIT = (-2), /* uninitialized type */ @@ -66,7 +66,7 @@ typedef int64_t hid_t; * can be removed from the ID type. If the function returns negative * (failure) then the object will remain in the ID type. */ -typedef herr_t (*H5I_free_t)(void*); +typedef herr_t (*H5I_free_t)(void *); /* Type of the function to compare objects & keys */ typedef int (*H5I_search_func_t)(void *obj, hid_t id, void *key); |