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 2001/01/31 19:14:17 UTC

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

dbertoni    01/01/31 10:14:16

  Modified:    c/src/XPath XPathFunctionTable.hpp
  Log:
  Added #ifdef XALAN_NO_NAMESPACES.
  
  Revision  Changes    Path
  1.11      +6 -1      xml-xalan/c/src/XPath/XPathFunctionTable.hpp
  
  Index: XPathFunctionTable.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XPathFunctionTable.hpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- XPathFunctionTable.hpp	2000/08/31 19:43:04	1.10
  +++ XPathFunctionTable.hpp	2001/01/31 18:14:11	1.11
  @@ -279,7 +279,12 @@
   	}
   
   #if defined(XALAN_NO_MEMBER_TEMPLATES)
  -	typedef vector<XalanDOMString>	InstalledFunctionNameVectorType;
  +
  +#if defined(XALAN_NO_NAMESPACES)
  +	typedef vector<XalanDOMString>			InstalledFunctionNameVectorType;
  +#else
  +	typedef std::vector<XalanDOMString>		InstalledFunctionNameVectorType;
  +#endif
   
   	/**
   	 * Add a list of the names of installed functions to a vector of names.