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/09/21 18:58:34 UTC

cvs commit: xml-xalan/c/src/XercesPlatformSupport XercesTextOutputStream.cpp

auriemma    00/09/21 09:58:33

  Modified:    c/src/XercesPlatformSupport XercesTextOutputStream.cpp
  Log:
  Resolve issue for AIX.
  
  Revision  Changes    Path
  1.10      +1 -1      xml-xalan/c/src/XercesPlatformSupport/XercesTextOutputStream.cpp
  
  Index: XercesTextOutputStream.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XercesPlatformSupport/XercesTextOutputStream.cpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XercesTextOutputStream.cpp	2000/09/19 14:50:05	1.9
  +++ XercesTextOutputStream.cpp	2000/09/21 16:58:32	1.10
  @@ -209,7 +209,7 @@
   
   		assert(&theTranscodedData[0] != 0);
   
  -		writeData(reinterpret_cast<const char*>(&theTranscodedData[0]),
  +		writeData(&theTranscodedData[0],
   				  theTranscodedData.size());
   	}
   	catch(const TextOutputStreamException&)