summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DataSpace.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2000-12-06 04:59:37 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2000-12-06 04:59:37 (GMT)
commit7df8cd5cfe22372f603ea058334647fe4017008e (patch)
tree65c9aa77f54e3ab55c980800b677f837b9ace72b /c++/src/H5DataSpace.h
parent71722c1b9b0ec0af088606a651f7ce0a492c08a2 (diff)
downloadhdf5-7df8cd5cfe22372f603ea058334647fe4017008e.zip
hdf5-7df8cd5cfe22372f603ea058334647fe4017008e.tar.gz
hdf5-7df8cd5cfe22372f603ea058334647fe4017008e.tar.bz2
[svn-r3079] Purpose: bug fix - by C API
Description: The prototype of two C API functions, H5Tget_offset and H5Sget_simple_extent_npoints was changed to fix bug #446, resulting in the need for updating the two corresponding C++ API functions. Solution: - Changed the return type of AtomType::getOffset from size_t to int, and the error return value from 0 to -1. - Changed the return type of DataSpace::getSimpleExtentNpoints from hsize_t to hssize_t, and the error value from 0 to -1. Platforms tested: arabica (sparc-sun-solaris 2.7)
Diffstat (limited to 'c++/src/H5DataSpace.h')
-rw-r--r--c++/src/H5DataSpace.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/c++/src/H5DataSpace.h b/c++/src/H5DataSpace.h
index ddbb29c..7f0ca83 100644
--- a/c++/src/H5DataSpace.h
+++ b/c++/src/H5DataSpace.h
@@ -47,7 +47,8 @@ class DataSpace : public IdComponent {
int getSimpleExtentNdims () const;
// Gets the number of elements in this dataspace.
- hsize_t getSimpleExtentNpoints () const;
+ // 12/05/00 - changed return type to hssize_t from hsize_t - C API
+ hssize_t getSimpleExtentNpoints () const;
// Gets the current class of this dataspace.
H5S_class_t getSimpleExtentType () const;