You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by an...@locus.apache.org on 2000/09/09 02:18:18 UTC

cvs commit: xml-xerces/c/src/internal ReaderMgr.hpp

andyh       00/09/08 17:18:18

  Modified:    c/src/internal ReaderMgr.hpp
  Log:
  Reordered member variables in ThrowEOEJanitor.  Patch submitted
  by Kirk Wylie.
  
  Revision  Changes    Path
  1.12      +6 -2      xml-xerces/c/src/internal/ReaderMgr.hpp
  
  Index: ReaderMgr.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/internal/ReaderMgr.hpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- ReaderMgr.hpp	2000/07/08 00:17:13	1.11
  +++ ReaderMgr.hpp	2000/09/09 00:18:18	1.12
  @@ -56,6 +56,10 @@
   
   /*
    * $Log: ReaderMgr.hpp,v $
  + * Revision 1.12  2000/09/09 00:18:18  andyh
  + * Reordered member variables in ThrowEOEJanitor.  Patch submitted
  + * by Kirk Wylie.
  + *
    * Revision 1.11  2000/07/08 00:17:13  andyh
    * Cleanup of yesterday's speedup changes.  Merged new bit into the
    * scanner character properties table.
  @@ -420,8 +424,8 @@
       // -----------------------------------------------------------------------
       ThrowEOEJanitor(ReaderMgr* mgrTarget, const bool newValue) :
   
  -        fMgr(mgrTarget)
  -        , fOld(mgrTarget->getThrowEOE())
  +        fOld(mgrTarget->getThrowEOE())
  +        , fMgr(mgrTarget)
       {
           mgrTarget->setThrowEOE(newValue);
       }