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/H5Attribute.cpp | |
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/H5Attribute.cpp')
-rw-r--r-- | c++/src/H5Attribute.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/c++/src/H5Attribute.cpp b/c++/src/H5Attribute.cpp index 301aaf1..9d5bd38 100644 --- a/c++/src/H5Attribute.cpp +++ b/c++/src/H5Attribute.cpp @@ -462,12 +462,13 @@ ssize_t Attribute::getName(H5std_string& attr_name, size_t len) const // Programmer Binh-Minh Ribler - Nov, 2001 // Modification // Modified to call its replacement. -BMR, 2014/04/16 -// Removed from documentation. -BMR, 2016/03/07 +// Removed from documentation. -BMR, 2016/03/07 1.8.17 and 1.10.0 +// Removed from code. -BMR, 2016/08/11 1.8.18 and 1.10.1 //-------------------------------------------------------------------------- -ssize_t Attribute::getName( size_t len, H5std_string& attr_name ) const -{ - return (getName(attr_name, len)); -} +//ssize_t Attribute::getName( size_t len, H5std_string& attr_name ) const +//{ +// return (getName(attr_name, len)); +//} //-------------------------------------------------------------------------- // Function: Attribute::getStorageSize |