gareth      2003/08/20 04:51:39

  Modified:    c/src/xercesc/util RefHashTableOf.c
  Log:
  Reorderd initializer list to prevent compiler warning.
  
  Revision  Changes    Path
  1.11      +7 -3      xml-xerces/c/src/xercesc/util/RefHashTableOf.c
  
  Index: RefHashTableOf.c
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/RefHashTableOf.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- RefHashTableOf.c  18 May 2003 14:02:05 -0000      1.10
  +++ RefHashTableOf.c  20 Aug 2003 11:51:39 -0000      1.11
  @@ -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 @@
       , fAdoptedElems(adoptElems)
       , fBucketList(0)
       , fHashModulus(modulus)
  -    , fHash(0)
       , fInitialModulus(modulus)
       , fCount(0)
  +    , fHash(0)
  +
   {
       initialize(modulus);
        
  @@ -170,9 +174,9 @@
       , fAdoptedElems(adoptElems)
       , fBucketList(0)
       , fHashModulus(modulus)
  -    , fHash(0)
       , fInitialModulus(modulus)
       , fCount(0)
  +    , fHash(0)
   {
       initialize(modulus);
       // set hasher
  @@ -187,9 +191,9 @@
       , fAdoptedElems(true)
       , fBucketList(0)
       , fHashModulus(modulus)
  -    , fHash(0)
       , fInitialModulus(modulus)
       , fCount(0)
  +    , fHash(0)
   {
       initialize(modulus);
   
  
  
  

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

Reply via email to