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/07 21:50:47 UTC

cvs commit: xml-xalan/c/src/DOMSupport NamespaceResolver.hpp

dbertoni    00/08/07 12:50:46

  Modified:    c/src/DOMSupport NamespaceResolver.hpp
  Log:
  Fixes for AIX compiler issues.
  
  Revision  Changes    Path
  1.7       +1 -1      xml-xalan/c/src/DOMSupport/NamespaceResolver.hpp
  
  Index: NamespaceResolver.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/DOMSupport/NamespaceResolver.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- NamespaceResolver.hpp	2000/07/02 02:40:50	1.6
  +++ NamespaceResolver.hpp	2000/08/07 19:50:45	1.7
  @@ -110,7 +110,7 @@
   protected:
   
   #if defined(XALAN_NO_NAMESPACES)
  -	typedef map<const XalanNode*, NSInfo>		NSInfoMapType;
  +	typedef map<const XalanNode*, NSInfo, less<const XalanNode*> >	NSInfoMapType;
   #else
   	typedef std::map<const XalanNode*, NSInfo>	NSInfoMapType;
   #endif