summaryrefslogtreecommitdiffstats
path: root/doc/html/cpplus
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-12-05 16:42:40 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-12-05 16:42:40 (GMT)
commit4886a6c447dc445ed34d8c6ea162b57cbbcec72b (patch)
treedf5e3f11b8af2766dcd07418331747c085245afb /doc/html/cpplus
parenta9c747deba6e588b2ec5bc624a53c976a9faa3bc (diff)
downloadhdf5-4886a6c447dc445ed34d8c6ea162b57cbbcec72b.zip
hdf5-4886a6c447dc445ed34d8c6ea162b57cbbcec72b.tar.gz
hdf5-4886a6c447dc445ed34d8c6ea162b57cbbcec72b.tar.bz2
[svn-r4670] Purpose:
Backward Compatibility Fix Description: One of H5P[gs]et_sym_k's parameters changed between v1.4 and the development branch. Solution: Added v1.4 compat stuff around H5P[gs]et_sym_k implementation and testing to allow v1.4.x users to continue to use their source code without modification. These changes are for everything except the FORTRAN wrappers - I spoke with Elena and she will make the FORTRAN wrapper changes. Platforms tested: FreeBSD 4.4 (hawkwind)
Diffstat (limited to 'doc/html/cpplus')
-rw-r--r--doc/html/cpplus/CppInterfaces.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/cpplus/CppInterfaces.html b/doc/html/cpplus/CppInterfaces.html
index 32abd35..083c353 100644
--- a/doc/html/cpplus/CppInterfaces.html
+++ b/doc/html/cpplus/CppInterfaces.html
@@ -814,11 +814,11 @@ class FileAccPropList : public PropList
void getAlignment( hsize_t& threshold, hsize_t& alignment ) const;
// Sets the meta data cache and raw data chunk cache parameters.
- void setCache( int mdc_nelmts, int rdcc_nelmts, size_t rdcc_nbytes, double rdcc_w0 ) const;
+ void setCache( int mdc_nelmts, size_t rdcc_nelmts, size_t rdcc_nbytes, double rdcc_w0 ) const;
// Retrieves maximum sizes of data caches and the preemption
// policy value.
- void getCache( int& mdc_nelmts, int& rdcc_nelmts, size_t& rdcc_nbytes, double& rdcc_w0 ) const;
+ void getCache( int& mdc_nelmts, size_t& rdcc_nelmts, size_t& rdcc_nbytes, double& rdcc_w0 ) const;
// Sets garbage collecting references flag.
void setGcReferences( unsigned gc_ref = 0 ) const;