summaryrefslogtreecommitdiffstats
path: root/c++/src/H5AbstractDs.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2016-04-24 20:30:27 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2016-04-24 20:30:27 (GMT)
commitc036aa157516f80a14918904673e0d380041a821 (patch)
tree8e9f4ff9c54f00b02d2f47e3062e364fe7cc3c4d /c++/src/H5AbstractDs.cpp
parentd490c837eb601c4a7eee8fba62ce8ba9adb0e9a1 (diff)
downloadhdf5-c036aa157516f80a14918904673e0d380041a821.zip
hdf5-c036aa157516f80a14918904673e0d380041a821.tar.gz
hdf5-c036aa157516f80a14918904673e0d380041a821.tar.bz2
[svn-r29784] Purpose: Code improvement
Description: - Removed ArrayType::rank and ArrayType::dimensions and modified the methods ArrayType::getArrayNDims and ArrayType::getArrayDims to always call the C functions to get the rank and dimensions. - Overloaded ArrayType::getArrayNDims and ArrayType::getArrayDims to provide const version and marked the non-const version deprecated. Merged from trunk r29782. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
Diffstat (limited to 'c++/src/H5AbstractDs.cpp')
-rw-r--r--c++/src/H5AbstractDs.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/c++/src/H5AbstractDs.cpp b/c++/src/H5AbstractDs.cpp
index 6dee337..51d5f88 100644
--- a/c++/src/H5AbstractDs.cpp
+++ b/c++/src/H5AbstractDs.cpp
@@ -145,7 +145,6 @@ ArrayType AbstractDs::getArrayType() const
// problem described in the JIRA issue HDFFV-7947
ArrayType arraytype;
f_DataType_setId(&arraytype, p_get_type());
- arraytype.setArrayInfo();
return(arraytype);
}
catch (DataSetIException& E) {