diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-17 14:57:53 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-17 14:57:53 (GMT) |
commit | 0cec5adf06503f7b0669b35e2833803308400c8e (patch) | |
tree | 8465b671dcb868908013f95e25d2a7a71594e387 /c++/src/H5FcreatProp.h | |
parent | f49ae55a0fcecdc0d750933d708d43478afc9f19 (diff) | |
download | hdf5-0cec5adf06503f7b0669b35e2833803308400c8e.zip hdf5-0cec5adf06503f7b0669b35e2833803308400c8e.tar.gz hdf5-0cec5adf06503f7b0669b35e2833803308400c8e.tar.bz2 |
[svn-r4553] Purpose:
Bug fix.
Description:
Fix int/unsigned problem in C++ wrapper API
Platforms tested:
FreeBSD 4.4 (hawkwind)
Diffstat (limited to 'c++/src/H5FcreatProp.h')
-rw-r--r-- | c++/src/H5FcreatProp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/src/H5FcreatProp.h b/c++/src/H5FcreatProp.h index 50e70b4..9dda55c 100644 --- a/c++/src/H5FcreatProp.h +++ b/c++/src/H5FcreatProp.h @@ -34,11 +34,11 @@ class FileCreatPropList : public PropList { void getSizes( size_t& sizeof_addr, size_t& sizeof_size ) const; // Sets the size of parameters used to control the symbol table nodes. - void setSymk( int int_nodes_k, int leaf_nodes_k ) const; + void setSymk( int int_nodes_k, unsigned leaf_nodes_k ) const; // Retrieves the size of the symbol table B-tree 1/2 rank and the // symbol table leaf node 1/2 size. - void getSymk( int& int_nodes_k, int& leaf_nodes_k ) const; + void getSymk( int& int_nodes_k, unsigned& leaf_nodes_k ) const; // Sets the size of parameter used to control the B-trees for // indexing chunked datasets. |