summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Location.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2014-04-12 04:02:26 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2014-04-12 04:02:26 (GMT)
commita791213860bee1a2990a9b502819f17abf7ff8a0 (patch)
treeeb6a0fb329cf263a781901e4ecfad41809f76fbe /c++/src/H5Location.h
parent170b9d0eed23d84bfad64f216b8759b1dc40586c (diff)
downloadhdf5-a791213860bee1a2990a9b502819f17abf7ff8a0.zip
hdf5-a791213860bee1a2990a9b502819f17abf7ff8a0.tar.gz
hdf5-a791213860bee1a2990a9b502819f17abf7ff8a0.tar.bz2
[svn-r25030] Purpose: Fix HDFFV-8658
Description: Turned on warnings and removed some of those. (merged from trunk-r24994) 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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/src/H5Location.h b/c++/src/H5Location.h
index c13c1c5..592f68d 100644
--- a/c++/src/H5Location.h
+++ b/c++/src/H5Location.h
@@ -103,9 +103,9 @@ class H5_DLLCPP H5Location : public IdComponent {
void setComment(const H5std_string& comment) const;
// 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, const size_t buf_size=0) const;
- H5std_string getComment(const H5std_string& name, const size_t buf_size=0) const;
+ ssize_t getComment(const char* name, 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;
// Removes the comment for the HDF5 object specified by its name.
void removeComment(const char* name) const;