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 2002/10/31 09:12:04 UTC

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

dbertoni    2002/10/31 00:12:04

  Modified:    c/src/XSLT Stylesheet.cpp Stylesheet.hpp
  Log:
  Use one definition of size_type.
  
  Revision  Changes    Path
  1.83      +2 -2      xml-xalan/c/src/XSLT/Stylesheet.cpp
  
  Index: Stylesheet.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/Stylesheet.cpp,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -r1.82 -r1.83
  --- Stylesheet.cpp	31 Oct 2002 07:15:56 -0000	1.82
  +++ Stylesheet.cpp	31 Oct 2002 08:12:04 -0000	1.83
  @@ -362,7 +362,7 @@
   			Stylesheet::PatternTableListType&	theList,
   			const Stylesheet::MatchPattern2*	thePattern)
   {
  -	typedef Stylesheet::MatchPattern2::size_type	size_type;
  +	typedef Stylesheet::size_type	size_type;
   	assert(thePattern != 0);
   
   	const double		thePatternPriority = thePattern->getPriorityOrDefault();
  @@ -1438,7 +1438,7 @@
   			++i;
   		}
   
  -		for(QNameVectorType::size_type j = 0; j < attributeSetsNamesCount; j++)
  +		for(size_type j = 0; j < attributeSetsNamesCount; j++)
   		{
   			const XalanQName* const		qname = attributeSetsNames[j];
   			assert(qname != 0);
  
  
  
  1.51      +0 -2      xml-xalan/c/src/XSLT/Stylesheet.hpp
  
  Index: Stylesheet.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/Stylesheet.hpp,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- Stylesheet.hpp	31 Oct 2002 07:15:56 -0000	1.50
  +++ Stylesheet.hpp	31 Oct 2002 08:12:04 -0000	1.51
  @@ -164,7 +164,6 @@
   	typedef std::vector<XalanDOMString>						URLStackType;
   	typedef std::vector<const XPath*>						XPathVectorType;
   	typedef std::vector<ElemDecimalFormat*>					ElemDecimalFormatVectorType;
  -	typedef std::vector<XalanQNameByValue>					QNameVectorType;
   #endif
   
   	/**
  @@ -682,7 +681,6 @@
   	{
   	public:
   
  -		typedef unsigned long		size_type;
   		typedef XPath::eMatchScore	eMatchScore;
   
   		/**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org