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/27 00:01:52 UTC

cvs commit: xml-xalan/c/src/XSLT VariablesStack.cpp

dbertoni    01/01/26 15:01:52

  Modified:    c/src/XSLT VariablesStack.cpp
  Log:
  Re-order initializer list.
  
  Revision  Changes    Path
  1.11      +2 -2      xml-xalan/c/src/XSLT/VariablesStack.cpp
  
  Index: VariablesStack.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/VariablesStack.cpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- VariablesStack.cpp	2001/01/16 02:38:12	1.10
  +++ VariablesStack.cpp	2001/01/26 23:01:51	1.11
  @@ -75,8 +75,8 @@
   	m_stack(),
   	m_globalStackFrameIndex(-1),
   	m_globalStackFrameMarked(false),
  -	m_currentStackFrameIndex(0),
  -	m_forceGlobalOnlySearch(false)
  +	m_forceGlobalOnlySearch(false),
  +	m_currentStackFrameIndex(0)
   {
   	m_stack.reserve(eDefaultStackSize);
   }