diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2021-11-24 22:20:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-24 22:20:30 (GMT) |
commit | 7cf5c296158eaab37c9a7f8ece008ae7776a41d2 (patch) | |
tree | 1c9fedc9bc94ade2141e197f590b8dcbc99d6875 /src/H5Dpkg.h | |
parent | ca6f9e3716bd1a35624167986b836d2f7674bcd1 (diff) | |
download | hdf5-7cf5c296158eaab37c9a7f8ece008ae7776a41d2.zip hdf5-7cf5c296158eaab37c9a7f8ece008ae7776a41d2.tar.gz hdf5-7cf5c296158eaab37c9a7f8ece008ae7776a41d2.tar.bz2 |
Fix a few warnings after recent H5S const-related changes (#1225)
Diffstat (limited to 'src/H5Dpkg.h')
-rw-r--r-- | src/H5Dpkg.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h index f9da745..32f1c80 100644 --- a/src/H5Dpkg.h +++ b/src/H5Dpkg.h @@ -701,26 +701,26 @@ H5_DLL herr_t H5D__fill_term(H5D_fill_buf_info_t *fb_info); #endif /*H5S_DEBUG*/ /* MPI-IO function to read, it will select either regular or irregular read */ H5_DLL herr_t H5D__mpio_select_read(const H5D_io_info_t *io_info, const H5D_type_info_t *type_info, - hsize_t nelmts, const H5S_t *file_space, const H5S_t *mem_space); + hsize_t nelmts, H5S_t *file_space, H5S_t *mem_space); /* MPI-IO function to write, it will select either regular or irregular read */ H5_DLL herr_t H5D__mpio_select_write(const H5D_io_info_t *io_info, const H5D_type_info_t *type_info, - hsize_t nelmts, const H5S_t *file_space, const H5S_t *mem_space); + hsize_t nelmts, H5S_t *file_space, H5S_t *mem_space); /* MPI-IO functions to handle contiguous collective IO */ H5_DLL herr_t H5D__contig_collective_read(H5D_io_info_t *io_info, const H5D_type_info_t *type_info, - hsize_t nelmts, const H5S_t *file_space, const H5S_t *mem_space, + hsize_t nelmts, H5S_t *file_space, H5S_t *mem_space, H5D_chunk_map_t *fm); H5_DLL herr_t H5D__contig_collective_write(H5D_io_info_t *io_info, const H5D_type_info_t *type_info, - hsize_t nelmts, const H5S_t *file_space, const H5S_t *mem_space, + hsize_t nelmts, H5S_t *file_space, H5S_t *mem_space, H5D_chunk_map_t *fm); /* MPI-IO functions to handle chunked collective IO */ H5_DLL herr_t H5D__chunk_collective_read(H5D_io_info_t *io_info, const H5D_type_info_t *type_info, - hsize_t nelmts, const H5S_t *file_space, const H5S_t *mem_space, + hsize_t nelmts, H5S_t *file_space, H5S_t *mem_space, H5D_chunk_map_t *fm); H5_DLL herr_t H5D__chunk_collective_write(H5D_io_info_t *io_info, const H5D_type_info_t *type_info, - hsize_t nelmts, const H5S_t *file_space, const H5S_t *mem_space, + hsize_t nelmts, H5S_t *file_space, H5S_t *mem_space, H5D_chunk_map_t *fm); /* MPI-IO function to check if a direct I/O transfer is possible between |