summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2014-03-26 03:30:07 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2014-03-26 03:30:07 (GMT)
commit3944dcb308de2d380822d2d56cf0d3bd96db5c8f (patch)
tree0c66831cfddf57d4ba0bf0c890a12459bb754cc9
parenta7d3f5b5b1591c6cbf77b07383fc6de51e11d0b1 (diff)
downloadhdf5-3944dcb308de2d380822d2d56cf0d3bd96db5c8f.zip
hdf5-3944dcb308de2d380822d2d56cf0d3bd96db5c8f.tar.gz
hdf5-3944dcb308de2d380822d2d56cf0d3bd96db5c8f.tar.bz2
[svn-r24902] 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)
-rw-r--r--c++/src/H5Location.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/src/H5Location.h b/c++/src/H5Location.h
index 0e46b4d..c13c1c5 100644
--- a/c++/src/H5Location.h
+++ b/c++/src/H5Location.h
@@ -104,8 +104,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;