You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/01/13 00:24:16 UTC

cvs commit: xml-xalan/c/src/XSLT CountersTable.hpp

dbertoni    01/01/12 15:24:16

  Modified:    c/src/XSLT CountersTable.hpp
  Log:
  Fixed member initialization order.
  
  Revision  Changes    Path
  1.2       +4 -4      xml-xalan/c/src/XSLT/CountersTable.hpp
  
  Index: CountersTable.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/CountersTable.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CountersTable.hpp	2000/12/21 04:00:41	1.1
  +++ CountersTable.hpp	2001/01/12 23:24:15	1.2
  @@ -58,7 +58,7 @@
   #define XALAN_ELEMNUMBER_HEADER_GUARD_1357924680 
   
   /**
  - * $Id: CountersTable.hpp,v 1.1 2000/12/21 04:00:41 dbertoni Exp $
  + * $Id: CountersTable.hpp,v 1.2 2001/01/12 23:24:15 dbertoni Exp $
    * 
    * $State: Exp $
    * 
  @@ -196,9 +196,9 @@
   	/**
   	 * Construct a CountersTable.
   	 */
  -	CountersTable() : 
  -		m_newFound(),
  -		m_counterMap()
  +	CountersTable() :
  +		m_counterMap(),
  +		m_newFound()
   	{
   	};