You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by au...@locus.apache.org on 2000/10/12 15:53:14 UTC

cvs commit: xml-xalan/c/src/XPath FunctionID.hpp XNodeSet.cpp

auriemma    00/10/12 06:53:13

  Modified:    c/src/XPath FunctionID.hpp XNodeSet.cpp
  Log:
  Reordered members.
  
  Revision  Changes    Path
  1.14      +2 -2      xml-xalan/c/src/XPath/FunctionID.hpp
  
  Index: FunctionID.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/FunctionID.hpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- FunctionID.hpp	2000/08/22 20:20:45	1.13
  +++ FunctionID.hpp	2000/10/12 13:53:11	1.14
  @@ -224,8 +224,8 @@
   
   		FunctionIDXObjectTypeCallback(XPathExecutionContext&	theExecutionContext) :
   			XObjectTypeCallback(),
  -			m_executionContext(theExecutionContext),
  -			m_resultString()
  +			m_resultString(),
  +			m_executionContext(theExecutionContext)			
   		{
   		}
   
  
  
  
  1.17      +1 -1      xml-xalan/c/src/XPath/XNodeSet.cpp
  
  Index: XNodeSet.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XNodeSet.cpp,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- XNodeSet.cpp	2000/10/12 13:39:53	1.16
  +++ XNodeSet.cpp	2000/10/12 13:53:11	1.17
  @@ -78,7 +78,7 @@
   XNodeSet::XNodeSet(BorrowReturnMutableNodeRefList&	value) :
   	XObject(eTypeNodeSet),
   	m_value(value),
  -	m_resultTreeFrag()
  +	m_resultTreeFrag(),
   	m_cachedStringValue(),
   	m_cachedNumberValue(0.0)	
   {