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/08/23 22:16:46 UTC

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

dbertoni    00/08/23 13:16:45

  Modified:    c/src/XSLT StylesheetHandler.hpp
  Log:
  Added less<> to set definitions.
  
  Revision  Changes    Path
  1.17      +2 -1      xml-xalan/c/src/XSLT/StylesheetHandler.hpp
  
  Index: StylesheetHandler.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetHandler.hpp,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- StylesheetHandler.hpp	2000/08/22 23:27:58	1.16
  +++ StylesheetHandler.hpp	2000/08/23 20:16:45	1.17
  @@ -105,7 +105,8 @@
   #if defined(XALAN_NO_NAMESPACES)
   	typedef vector<ElemTemplateElement*>		ElemTemplateStackType;
   	typedef vector<ElemTextLiteral*>			ElemTextLiteralStackType;
  -	typedef set<ElemTemplateElement*>			ElemTemplateSetType;
  +	typedef set<ElemTemplateElement*,
  +				less<ElemTemplateElement*> >	ElemTemplateSetType;
   #else
   	typedef std::vector<ElemTemplateElement*>	ElemTemplateStackType;
   	typedef std::vector<ElemTextLiteral*>		ElemTextLiteralStackType;