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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]