Skip to content
Snippets Groups Projects
Commit 717dff0d authored by Gareth Reakes's avatar Gareth Reakes
Browse files

Reorderd initializer list to prevent compiler warning.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@175153 13f79535-47bb-0310-9956-ffa450edef68
parent da90366c
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,9 @@
/**
* $Log$
* Revision 1.11 2003/08/20 11:51:39 gareth
* Reorderd initializer list to prevent compiler warning.
*
* Revision 1.10 2003/05/18 14:02:05 knoaman
* Memory manager implementation: pass per instance manager.
*
......@@ -150,9 +153,10 @@ RefHashTableOf<TVal>::RefHashTableOf( const unsigned int modulus
, fAdoptedElems(adoptElems)
, fBucketList(0)
, fHashModulus(modulus)
, fHash(0)
, fInitialModulus(modulus)
, fCount(0)
, fHash(0)
{
initialize(modulus);
......@@ -170,9 +174,9 @@ RefHashTableOf<TVal>::RefHashTableOf( const unsigned int modulus
, fAdoptedElems(adoptElems)
, fBucketList(0)
, fHashModulus(modulus)
, fHash(0)
, fInitialModulus(modulus)
, fCount(0)
, fHash(0)
{
initialize(modulus);
// set hasher
......@@ -187,9 +191,9 @@ RefHashTableOf<TVal>::RefHashTableOf(const unsigned int modulus
, fAdoptedElems(true)
, fBucketList(0)
, fHashModulus(modulus)
, fHash(0)
, fInitialModulus(modulus)
, fCount(0)
, fHash(0)
{
initialize(modulus);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment