From a8682cc688da7aeaa619819acf40a16f1e7e48ac Mon Sep 17 00:00:00 2001
From: Alberto Massari <amassari@apache.org>
Date: Wed, 22 Sep 2004 11:14:22 +0000
Subject: [PATCH] Reorder initialization of variables in constructor

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@176065 13f79535-47bb-0310-9956-ffa450edef68
---
 src/xercesc/util/RefHash2KeysTableOf.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/xercesc/util/RefHash2KeysTableOf.c b/src/xercesc/util/RefHash2KeysTableOf.c
index 0dd9f8333..81d338eea 100644
--- a/src/xercesc/util/RefHash2KeysTableOf.c
+++ b/src/xercesc/util/RefHash2KeysTableOf.c
@@ -16,6 +16,9 @@
 
 /**
  * $Log$
+ * Revision 1.11  2004/09/22 11:14:22  amassari
+ * Reorder initialization of variables in constructor
+ *
  * Revision 1.10  2004/09/08 13:56:22  peiyongz
  * Apache License Version 2.0
  *
@@ -429,8 +432,9 @@ template <class TVal> RefHash2KeysTableOfEnumerator<TVal>::
 RefHash2KeysTableOfEnumerator(RefHash2KeysTableOf<TVal>* const toEnum
                               , const bool adopt
                               , MemoryManager* const manager)
-	: fAdopted(adopt), fCurElem(0), fCurHash((unsigned int)-1), fToEnum(toEnum), fLockPrimaryKey(0)
+	: fAdopted(adopt), fCurElem(0), fCurHash((unsigned int)-1), fToEnum(toEnum)
     , fMemoryManager(manager)
+    , fLockPrimaryKey(0)
 {
     if (!toEnum)
         ThrowXMLwithMemMgr(NullPointerException, XMLExcepts::CPtr_PointerIsZero, fMemoryManager);
-- 
GitLab