diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-03-26 00:47:07 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-03-26 00:47:07 (GMT) |
commit | 7ed2b997ba03a84467ef4a9aaad1da7ec44b26b1 (patch) | |
tree | a067612c5beb52ee1b1ebb7f98f7fc0070189d46 /c++/src/H5Location.h | |
parent | 9db0c02b969907ed1d647b05329ef73f8207c4fb (diff) | |
download | hdf5-7ed2b997ba03a84467ef4a9aaad1da7ec44b26b1.zip hdf5-7ed2b997ba03a84467ef4a9aaad1da7ec44b26b1.tar.gz hdf5-7ed2b997ba03a84467ef4a9aaad1da7ec44b26b1.tar.bz2 |
[svn-r24901] Description:
Fixed mismatched function prototype/definition that caused daily
test failure on emu/production/HDF5TestExpress=1.
Platforms tested:
Linux/ppc64 (ostrich)
Linux/32 2.6 (jam)
SunOS 5.11 (emu)
Diffstat (limited to 'c++/src/H5Location.h')
-rw-r--r-- | c++/src/H5Location.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/src/H5Location.h b/c++/src/H5Location.h index 11dbf85..05acc7c 100644 --- a/c++/src/H5Location.h +++ b/c++/src/H5Location.h @@ -105,8 +105,8 @@ class H5_DLLCPP H5Location : public IdComponent { // Retrieves comment for the HDF5 object specified by its name. ssize_t getComment(const char* name, const size_t buf_size, char* comment) const; - H5std_string getComment(const char* name, size_t buf_size=0) const; - H5std_string getComment(const H5std_string& name, size_t buf_size=0) const; + H5std_string getComment(const char* name, const size_t buf_size=0) const; + H5std_string getComment(const H5std_string& name, const size_t buf_size=0) const; // Removes the comment for the HDF5 object specified by its name. void removeComment(const char* name) const; |