diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2017-05-09 22:30:20 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2017-05-09 22:30:20 (GMT) |
commit | 8482314d7db83c47947af8ca50457cdb1ddae366 (patch) | |
tree | ba6c80cbc33f11ed69d319e44619fbc74c01d839 | |
parent | e062a77e0e9e22f5d7c3ede4236e8992fd7daf8d (diff) | |
download | hdf5-8482314d7db83c47947af8ca50457cdb1ddae366.zip hdf5-8482314d7db83c47947af8ca50457cdb1ddae366.tar.gz hdf5-8482314d7db83c47947af8ca50457cdb1ddae366.tar.bz2 |
Fix for HDFFV-10051
Fix missing declaration for H5D__layout_compact_dirty_test().
Tested on mayll and osx1010test.
-rw-r--r-- | src/H5Dpkg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h index b123b81..a6857b9 100644 --- a/src/H5Dpkg.h +++ b/src/H5Dpkg.h @@ -777,6 +777,7 @@ H5_DLL htri_t H5D__mpio_opt_possible(const H5D_io_info_t *io_info, #ifdef H5D_TESTING H5_DLL herr_t H5D__layout_version_test(hid_t did, unsigned *version); H5_DLL herr_t H5D__layout_contig_size_test(hid_t did, hsize_t *size); +H5_DLL herr_t H5D__layout_compact_dirty_test(hid_t did, hbool_t *dirty); H5_DLL herr_t H5D__layout_idx_type_test(hid_t did, H5D_chunk_index_t *idx_type); H5_DLL herr_t H5D__layout_type_test(hid_t did, H5D_layout_t *layout_type); H5_DLL herr_t H5D__current_cache_size_test(hid_t did, size_t *nbytes_used, int *nused); |