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/26 23:32:00 UTC

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

dbertoni    01/01/26 14:31:59

  Modified:    c/src/XPath XPathExpression.cpp
  Log:
  Fixed problem with including <ostream>.
  
  Revision  Changes    Path
  1.24      +2 -6      xml-xalan/c/src/XPath/XPathExpression.cpp
  
  Index: XPathExpression.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XPathExpression.cpp,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- XPathExpression.cpp	2001/01/26 01:23:03	1.23
  +++ XPathExpression.cpp	2001/01/26 22:31:58	1.24
  @@ -64,15 +64,11 @@
   
   
   
  -#if !defined(XALAN_NO_IOSFWD)
  -#include <ostream>
  -#endif
  -
  -
  -
   #if defined(XALAN_OLD_STREAM_HEADERS)
  +#include <ostream.h>
   #include <strstream.h>
   #else
  +#include <ostream>
   #include <strstream>
   #endif