dbertoni 00/08/15 12:42:42
Modified: c/src/XercesPlatformSupport XercesDOMPrintWriter.cpp
XercesDOMPrintWriter.hpp
Log:
Changes for AIX.
Revision Changes Path
1.12 +4 -0
xml-xalan/c/src/XercesPlatformSupport/XercesDOMPrintWriter.cpp
Index: XercesDOMPrintWriter.cpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/XercesPlatformSupport/XercesDOMPrintWriter.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- XercesDOMPrintWriter.cpp 2000/07/25 14:45:05 1.11
+++ XercesDOMPrintWriter.cpp 2000/08/15 19:42:41 1.12
@@ -197,6 +197,7 @@
+#if !defined(XALAN_BOOL_AS_INT)
void
XercesDOMPrintWriter::print(bool b)
{
@@ -209,6 +210,7 @@
print(XALAN_STATIC_UCODE_STRING("false"));
}
}
+#endif
@@ -289,6 +291,7 @@
+#if !defined(XALAN_BOOL_AS_INT)
void
XercesDOMPrintWriter::println(bool b)
{
@@ -296,6 +299,7 @@
println();
}
+#endif
1.5 +4 -0
xml-xalan/c/src/XercesPlatformSupport/XercesDOMPrintWriter.hpp
Index: XercesDOMPrintWriter.hpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/XercesPlatformSupport/XercesDOMPrintWriter.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- XercesDOMPrintWriter.hpp 2000/04/25 19:48:54 1.4
+++ XercesDOMPrintWriter.hpp 2000/08/15 19:42:41 1.5
@@ -121,8 +121,10 @@
unsigned int theOffset = 0,
unsigned int theLength = UINT_MAX);
+#if !defined(XALAN_BOOL_AS_INT)
virtual void
print(bool b);
+#endif
virtual void
print(char c);
@@ -150,8 +152,10 @@
virtual void
println();
+#if !defined(XALAN_BOOL_AS_INT)
virtual void
println(bool b);
+#endif
virtual void
println(char c);