diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-04-09 02:36:48 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2014-04-09 02:36:48 (GMT) |
commit | 385b4b40ae69ca45be476472ce1c8e5391a63caa (patch) | |
tree | c9c6d4fb5a00fd2a6ed7066b73313fb6a580b29b /c++/src/H5FaccProp.h | |
parent | aaf5c1d4003f6825b6df37390bd5b88053be0f31 (diff) | |
download | hdf5-385b4b40ae69ca45be476472ce1c8e5391a63caa.zip hdf5-385b4b40ae69ca45be476472ce1c8e5391a63caa.tar.gz hdf5-385b4b40ae69ca45be476472ce1c8e5391a63caa.tar.bz2 |
[svn-r24991] Purpose: Fixed HDFFV-3384
Description:
- Added const to const arguments
- Fixed miscellaneous comments
Platforms tested:
Linux/ppc64 (ostrich)
Linux/32 2.6 (jam)
SunOS 5.11 (emu)
Diffstat (limited to 'c++/src/H5FaccProp.h')
-rw-r--r-- | c++/src/H5FaccProp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/src/H5FaccProp.h b/c++/src/H5FaccProp.h index 5dd108f..5b41ecd 100644 --- a/c++/src/H5FaccProp.h +++ b/c++/src/H5FaccProp.h @@ -62,9 +62,9 @@ class H5_DLLCPP FileAccPropList : public PropList { FileAccPropList getFamily(hsize_t& memb_size) const; // Emulates the old split file driver, - void setSplit( FileAccPropList& meta_plist, FileAccPropList& raw_plist, + void setSplit(const FileAccPropList& meta_plist, const FileAccPropList& raw_plist, const char* meta_ext = ".meta", const char* raw_ext = ".raw" ) const; - void setSplit( FileAccPropList& meta_plist, FileAccPropList& raw_plist, + void setSplit(const FileAccPropList& meta_plist, const FileAccPropList& raw_plist, const H5std_string& meta_ext, const H5std_string& raw_ext ) const; // Sets the maximum size of the data sieve buffer. |