summaryrefslogtreecommitdiffstats
path: root/c++/src/H5CommonFG.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2014-04-12 03:54:25 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2014-04-12 03:54:25 (GMT)
commit170b9d0eed23d84bfad64f216b8759b1dc40586c (patch)
tree261d2079cd91b85c4b82b3a5d1362ffcff913696 /c++/src/H5CommonFG.h
parent53a50fa7c8802f7f964ccf082b5fa8646cf61287 (diff)
downloadhdf5-170b9d0eed23d84bfad64f216b8759b1dc40586c.zip
hdf5-170b9d0eed23d84bfad64f216b8759b1dc40586c.tar.gz
hdf5-170b9d0eed23d84bfad64f216b8759b1dc40586c.tar.bz2
[svn-r25029] Purpose: Fixed HDFFV-3384
Description: - Added const to const arguments - Fixed miscellaneous comments (merged from trunk-24991) Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
Diffstat (limited to 'c++/src/H5CommonFG.h')
-rw-r--r--c++/src/H5CommonFG.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/src/H5CommonFG.h b/c++/src/H5CommonFG.h
index c35a9ff..e47e70e 100644
--- a/c++/src/H5CommonFG.h
+++ b/c++/src/H5CommonFG.h
@@ -101,8 +101,8 @@ class H5_DLLCPP CommonFG {
void unlink(const H5std_string& name) const;
// Mounts the file 'child' onto this location.
- void mount(const char* name, H5File& child, PropList& plist) const;
- void mount(const H5std_string& name, H5File& child, PropList& plist) const;
+ void mount(const char* name, const H5File& child, const PropList& plist) const;
+ void mount(const H5std_string& name, const H5File& child, const PropList& plist) const;
// Unmounts the file named 'name' from this parent location.
void unmount(const char* name) const;