[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)
This commit is contained in:
Binh-Minh Ribler 2014-03-25 19:47:07 -05:00
parent 9db0c02b96
commit 7ed2b997ba

View File

@ -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;