diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-01-15 22:25:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-01-15 22:25:42 (GMT) |
commit | f7520c906258636b4b8b24d3b0cd175f653c74ad (patch) | |
tree | 5ae2d014cd394715eea60403d91619774abe531c /c++/src/H5DataSpace.h | |
parent | e5dac2010c173cab81b70b2ba0e9ba03d2b94b91 (diff) | |
download | hdf5-f7520c906258636b4b8b24d3b0cd175f653c74ad.zip hdf5-f7520c906258636b4b8b24d3b0cd175f653c74ad.tar.gz hdf5-f7520c906258636b4b8b24d3b0cd175f653c74ad.tar.bz2 |
[svn-r14423] Description:
Change the 'coord' parameter for H5Sselect_elements() from 'hsize_t **' to
'hsize_t *' in this branch also.
Tested on:
Mac OS X/32 10.5.1 (amazon)
Diffstat (limited to 'c++/src/H5DataSpace.h')
-rw-r--r-- | c++/src/H5DataSpace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5DataSpace.h b/c++/src/H5DataSpace.h index a46f486..e1c5ba4 100644 --- a/c++/src/H5DataSpace.h +++ b/c++/src/H5DataSpace.h @@ -86,7 +86,7 @@ class H5_DLLCPP DataSpace : public IdComponent { // Selects array elements to be included in the selection for // this dataspace. - void selectElements( H5S_seloper_t op, const size_t num_elements, const hsize_t *coord[ ] ) const; + void selectElements( H5S_seloper_t op, const size_t num_elements, const hsize_t *coord) const; // Selects a hyperslab region to add to the current selected region. void selectHyperslab( H5S_seloper_t op, const hsize_t *count, const hsize_t *start, const hsize_t *stride = NULL, const hsize_t *block = NULL ) const; |