summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Location.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2014-04-09 04:03:03 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2014-04-09 04:03:03 (GMT)
commit0dc4ce37046c373ca48ed5d186e3598d7b48ed35 (patch)
tree205b77bbf5f08909ec4ac2aad5164bd49e6b674e /c++/src/H5Location.h
parent5ae7ad342d42a9d6384edc3e465f57fa35ada5de (diff)
downloadhdf5-0dc4ce37046c373ca48ed5d186e3598d7b48ed35.zip
hdf5-0dc4ce37046c373ca48ed5d186e3598d7b48ed35.tar.gz
hdf5-0dc4ce37046c373ca48ed5d186e3598d7b48ed35.tar.bz2
[svn-r24994] Purpose: Removed some warnings
Description: Turned on warnings and removed some of those. 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 05acc7c..e015825 100644
--- a/c++/src/H5Location.h
+++ b/c++/src/H5Location.h
@@ -104,9 +104,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;