diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2017-01-03 16:28:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2017-01-03 16:28:05 (GMT) |
commit | e73a32b85288319298c1e39b9cf92fb42a838924 (patch) | |
tree | f79fab89632a0d0b1ec460ab20eefc328b20b99c /src/H5MFprivate.h | |
parent | edd3ff309894decb3eaabce5c91b24f89286d177 (diff) | |
download | hdf5-e73a32b85288319298c1e39b9cf92fb42a838924.zip hdf5-e73a32b85288319298c1e39b9cf92fb42a838924.tar.gz hdf5-e73a32b85288319298c1e39b9cf92fb42a838924.tar.bz2 |
Remove 'const' from cache client pre_serialize callback, to reduce warnings,
and correspondingly remove 'const' from some internal routines. Also rename
some H5MF* routines to reflect their static/package usage.
Diffstat (limited to 'src/H5MFprivate.h')
-rw-r--r-- | src/H5MFprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5MFprivate.h b/src/H5MFprivate.h index cb797b7..0adcfd4 100644 --- a/src/H5MFprivate.h +++ b/src/H5MFprivate.h @@ -59,7 +59,7 @@ H5_DLL herr_t H5MF_try_close(H5F_t *f, hid_t dxpl_id); /* File space allocation routines */ H5_DLL haddr_t H5MF_alloc(H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, hsize_t size); H5_DLL haddr_t H5MF_aggr_vfd_alloc(H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, hsize_t size); -H5_DLL herr_t H5MF_xfree(const H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, +H5_DLL herr_t H5MF_xfree(H5F_t *f, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, hsize_t size); H5_DLL herr_t H5MF_try_extend(H5F_t *f, hid_t dxpl_id, H5FD_mem_t type, haddr_t addr, hsize_t size, hsize_t extra_requested); |