diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-08-12 06:55:43 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-08-12 06:55:43 (GMT) |
commit | ae0b7490126e45e312b63a27b499e5a25e402f40 (patch) | |
tree | 454c94b39a5cbc46a4ff2cd02279803aac8f477d /c++/src/H5CommonFG.h | |
parent | 7ee176d29bf33f11139b757d8555645cdf314335 (diff) | |
download | hdf5-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/H5CommonFG.h')
-rw-r--r-- | c++/src/H5CommonFG.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/src/H5CommonFG.h b/c++/src/H5CommonFG.h index d36d78c..9fee802 100644 --- a/c++/src/H5CommonFG.h +++ b/c++/src/H5CommonFG.h @@ -107,9 +107,9 @@ class H5_DLLCPP CommonFG { // Mounts the file 'child' onto this location. void mount(const char* name, const H5File& child, const PropList& plist) const; - void mount(const char* name, H5File& child, PropList& plist) const; // backward compatibility + //void mount(const char* name, H5File& child, PropList& plist) const; // removed from 1.8.18 and 1.10.1 void mount(const H5std_string& name, const H5File& child, const PropList& plist) const; - void mount(const H5std_string& name, H5File& child, PropList& plist) const; // backward compatibility + //void mount(const H5std_string& name, H5File& child, PropList& plist) const; // removed from 1.8.18 and 1.10.1 // Unmounts the file named 'name' from this parent location. void unmount(const char* name) const; |