amassari    2004/09/22 04:14:22

  Modified:    c/src/xercesc/util RefHash2KeysTableOf.c
  Log:
  Reorder initialization of variables in constructor
  
  Revision  Changes    Path
  1.11      +5 -1      xml-xerces/c/src/xercesc/util/RefHash2KeysTableOf.c
  
  Index: RefHash2KeysTableOf.c
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/RefHash2KeysTableOf.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- RefHash2KeysTableOf.c     8 Sep 2004 13:56:22 -0000       1.10
  +++ RefHash2KeysTableOf.c     22 Sep 2004 11:14:22 -0000      1.11
  @@ -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 @@
   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);
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to