dbertoni    00/07/21 12:18:57

  Modified:    c/src/PlatformSupport DOMStringHelper.hpp
  Log:
  Fixed incorrect cast.
  
  Revision  Changes    Path
  1.24      +1 -1      xml-xalan/c/src/PlatformSupport/DOMStringHelper.hpp
  
  Index: DOMStringHelper.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/DOMStringHelper.hpp,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- DOMStringHelper.hpp       2000/06/05 00:50:51     1.23
  +++ DOMStringHelper.hpp       2000/07/21 19:18:55     1.24
  @@ -1183,7 +1183,7 @@
   clear(XalanDOMString&        theString)
   {
   #if defined(XALAN_OLD_STYLE_CASTS)
  -     theString = (DOM_NullPtr)0;
  +     theString = (DOM_NullPtr*)0;
   #else
        theString = static_cast<DOM_NullPtr*>(0);
   #endif
  
  
  

Reply via email to