summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DcreatProp.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2003-10-24 04:11:10 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2003-10-24 04:11:10 (GMT)
commit88595aecaadb1c170a8f0a801adbada75da94367 (patch)
tree04c6ecde5e5f5ee30b76a9a9c344c3c1f3e0a775 /c++/src/H5DcreatProp.h
parent0e008a403e7487e4b334fb19c4c63cfc4cd65f85 (diff)
downloadhdf5-88595aecaadb1c170a8f0a801adbada75da94367.zip
hdf5-88595aecaadb1c170a8f0a801adbada75da94367.tar.gz
hdf5-88595aecaadb1c170a8f0a801adbada75da94367.tar.bz2
[svn-r7722] Purpose:
Minor bug fix Description: Added missing "const" to the first parameter in two functions: DSetCreatPropList::set/getFillValue Platforms: Only effected C++ API SunOS 5.7 (arabica) Linux 2.4 (eirene)
Diffstat (limited to 'c++/src/H5DcreatProp.h')
-rw-r--r--c++/src/H5DcreatProp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/src/H5DcreatProp.h b/c++/src/H5DcreatProp.h
index 9fec721..931a478 100644
--- a/c++/src/H5DcreatProp.h
+++ b/c++/src/H5DcreatProp.h
@@ -49,10 +49,10 @@ class H5_DLLCPP DSetCreatPropList : public PropList {
void setDeflate( int level ) const;
// Sets a dataset fill value
- void setFillValue( DataType& fvalue_type, const void* value ) const;
+ void setFillValue( const DataType& fvalue_type, const void* value ) const;
// Retrieves a dataset fill value
- void getFillValue( DataType& fvalue_type, void* value ) const;
+ void getFillValue( const DataType& fvalue_type, void* value ) const;
// Adds a filter to the filter pipeline
void setFilter( H5Z_filter_t filter, unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[] ) const;