summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DataType.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2016-08-12 06:55:43 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2016-08-12 06:55:43 (GMT)
commitae0b7490126e45e312b63a27b499e5a25e402f40 (patch)
tree454c94b39a5cbc46a4ff2cd02279803aac8f477d /c++/src/H5DataType.h
parent7ee176d29bf33f11139b757d8555645cdf314335 (diff)
downloadhdf5-ae0b7490126e45e312b63a27b499e5a25e402f40.zip
hdf5-ae0b7490126e45e312b63a27b499e5a25e402f40.tar.gz
hdf5-ae0b7490126e45e312b63a27b499e5a25e402f40.tar.bz2
[svn-r30279] Purpose: Code improvement (HDFFR-9725)
Description: Removed deprecated functions in previous releases due to missing const. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
Diffstat (limited to 'c++/src/H5DataType.h')
-rw-r--r--c++/src/H5DataType.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/src/H5DataType.h b/c++/src/H5DataType.h
index 5705b83..7584cff 100644
--- a/c++/src/H5DataType.h
+++ b/c++/src/H5DataType.h
@@ -63,9 +63,9 @@ class H5_DLLCPP DataType : public H5Object {
void commit(const H5Location& loc, const char* name);
void commit(const H5Location& loc, const H5std_string& name);
// These two overloaded functions are kept for backward compatibility
- // only; they missed the const.
- void commit(H5Location& loc, const char* name);
- void commit(H5Location& loc, const H5std_string& name);
+ // only; they missed the const - removed from 1.8.18 and 1.10.1
+ //void commit(H5Location& loc, const char* name);
+ //void commit(H5Location& loc, const H5std_string& name);
// Determines whether this datatype is a named datatype or
// a transient datatype.