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...@locus.apache.org on 2000/07/25 20:39:52 UTC

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

dbertoni    00/07/25 11:39:52

  Modified:    c/src/XPath XNodeSet.hpp
  Log:
  Cleaned up #if defines.
  
  Revision  Changes    Path
  1.10      +0 -8      xml-xalan/c/src/XPath/XNodeSet.hpp
  
  Index: XNodeSet.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XNodeSet.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XNodeSet.hpp	2000/07/21 19:50:02	1.9
  +++ XNodeSet.hpp	2000/07/25 18:39:52	1.10
  @@ -201,17 +201,9 @@
   	mutable double								m_cachedNumberValue;
   
   #if defined(XALAN_NO_NAMESPACES)
  -#if defined(XALAN_NO_MUTABLE)
  -	auto_ptr<ResultTreeFragBase>				m_resultTreeFrag;
  -#else
   	mutable auto_ptr<ResultTreeFragBase>		m_resultTreeFrag;
  -#endif
  -#else
  -#if defined(XALAN_NO_MUTABLE)
  -	std::auto_ptr<ResultTreeFragBase>			m_resultTreeFrag;
   #else
   	mutable std::auto_ptr<ResultTreeFragBase>	m_resultTreeFrag;
  -#endif
   #endif
   };