diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-09-26 23:52:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-09-26 23:52:42 (GMT) |
commit | 8186a5cee10c41e97ba24b6fe1de9f6ce0c3902d (patch) | |
tree | ff9e92097542b930801522e1ce6c0ed5de72cecc /src/H5Sprivate.h | |
parent | aec3e1242d0d0f5c0fcbe796f2c2801c828e7efb (diff) | |
download | hdf5-8186a5cee10c41e97ba24b6fe1de9f6ce0c3902d.zip hdf5-8186a5cee10c41e97ba24b6fe1de9f6ce0c3902d.tar.gz hdf5-8186a5cee10c41e97ba24b6fe1de9f6ce0c3902d.tar.bz2 |
[svn-r27884] Description:
Update dataspace selection encode/decode routines to avoid type aliasing
errors.
Tested on:
Linux/64 2.6.x (platypus) w/production
(h5committest forthcoming)
Diffstat (limited to 'src/H5Sprivate.h')
-rw-r--r-- | src/H5Sprivate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h index cccfd6d..b6b974d 100644 --- a/src/H5Sprivate.h +++ b/src/H5Sprivate.h @@ -206,6 +206,7 @@ H5_DLL int H5S_extend(H5S_t *space, const hsize_t *size); H5_DLL hsize_t H5S_extent_nelem(const H5S_extent_t *ext); H5_DLL int H5S_extent_get_dims(const H5S_extent_t *ext, hsize_t dims[], hsize_t max_dims[]); H5_DLL htri_t H5S_extent_equal(const H5S_t *ds1, const H5S_t *ds2); +H5_DLL herr_t H5S_extent_copy(H5S_t *dst, const H5S_t *src); /* Operations on selections */ H5_DLL herr_t H5S_select_deserialize(H5S_t **space, const uint8_t **p); |