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
