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/09/27 00:07:54 UTC

cvs commit: xml-xalan/c/src/PlatformSupport XalanStdOutputStream.hpp

dbertoni    01/09/26 15:07:54

  Modified:    c/src/PlatformSupport XalanStdOutputStream.hpp
  Log:
  32/64-bit fixes.
  
  Revision  Changes    Path
  1.4       +5 -1      xml-xalan/c/src/PlatformSupport/XalanStdOutputStream.hpp
  
  Index: XalanStdOutputStream.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/XalanStdOutputStream.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XalanStdOutputStream.hpp	2001/09/26 14:10:31	1.3
  +++ XalanStdOutputStream.hpp	2001/09/26 22:07:53	1.4
  @@ -89,10 +89,14 @@
   
   #if defined (XALAN_NO_NAMESPACES)
   	typedef ostream		StreamType;
  -	typedef int			StreamSizeType;
  +	typedef long		StreamSizeType;
   #else
   	typedef std::ostream		StreamType;
  +#if defined(XALAN_NO_STD_STREAMSIZE)
  +	typedef long				StreamSizeType;
  +#else
   	typedef std::streamsize		StreamSizeType;
  +#endif
   #endif
   
   	/**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org