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...@locus.apache.org on 2000/05/03 20:42:43 UTC

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

dbertoni    00/05/03 11:42:43

  Modified:    c/src/XercesPlatformSupport XercesTextOutputStream.cpp
  Log:
  Lowered buffer size to 512.
  
  Revision  Changes    Path
  1.4       +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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XercesTextOutputStream.cpp	2000/04/25 19:48:55	1.3
  +++ XercesTextOutputStream.cpp	2000/05/03 18:42:43	1.4
  @@ -68,7 +68,7 @@
   
   
   
  -const XercesTextOutputStream::BufferType::size_type	XercesTextOutputStream::s_bufferSize = 8192;
  +const XercesTextOutputStream::BufferType::size_type	XercesTextOutputStream::s_bufferSize = 512;