dbertoni    00/04/20 09:43:50

  Modified:    c/src/XercesPlatformSupport TextFileOutputStream.cpp
  Log:
  Fixed namespace problems.
  
  Revision  Changes    Path
  1.11      +5 -1      
xml-xalan/c/src/XercesPlatformSupport/TextFileOutputStream.cpp
  
  Index: TextFileOutputStream.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/XercesPlatformSupport/TextFileOutputStream.cpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- TextFileOutputStream.cpp  2000/04/11 14:41:51     1.10
  +++ TextFileOutputStream.cpp  2000/04/20 16:43:50     1.11
  @@ -143,7 +143,11 @@
   
        theResult += theFileName;
   
  -     std::ostrstream theFormatter;
  +#if !defined(XALAN_NO_NAMESPACES)
  +using std::ostrstream;
  +#endif
  +
  +     ostrstream      theFormatter;
   
        theFormatter << ".  The error code was "
                                 << theErrorCode << "." << '\0';
  
  
  

Reply via email to