You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by au...@locus.apache.org on 2000/11/09 20:39:30 UTC

cvs commit: xml-xalan/c/src/XPath XPathInit.cpp

auriemma    00/11/09 11:39:30

  Modified:    c/src/XPath XPathInit.cpp
  Log:
  Explicit initialization of static strings.
  
  Revision  Changes    Path
  1.3       +5 -0      xml-xalan/c/src/XPath/XPathInit.cpp
  
  Index: XPathInit.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XPathInit.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XPathInit.cpp	2000/09/19 14:56:40	1.2
  +++ XPathInit.cpp	2000/11/09 19:39:30	1.3
  @@ -60,6 +60,7 @@
   
   
   #include "XBoolean.hpp"
  +#include "XUnknown.hpp"
   #include "XPath.hpp"
   #include "XPathEnvSupportDefault.hpp"
   #include "XPathProcessorImpl.hpp"
  @@ -101,6 +102,8 @@
   {
   	XBoolean::initialize();
   
  +	XUnknown::initialize();
  +
   	XPath::initialize();
   
   	XPathProcessorImpl::initialize();
  @@ -118,6 +121,8 @@
   	XPathProcessorImpl::terminate();
   
   	XPath::terminate();
  +
  +	XUnknown::terminate();
   
   	XBoolean::terminate();
   }