dbertoni 02/02/06 17:40:35
Modified: c/src/TestXSLT process.cpp
Log:
Added #include of typeinfo.
Revision Changes Path
1.82 +5 -3 xml-xalan/c/src/TestXSLT/process.cpp
Index: process.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/TestXSLT/process.cpp,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- process.cpp 20 Dec 2001 01:24:02 -0000 1.81
+++ process.cpp 7 Feb 2002 01:40:35 -0000 1.82
@@ -62,14 +62,16 @@
#include <cstdio>
#include <cstring>
-
-
#if defined(XALAN_OLD_STREAM_HEADERS)
#include <iostream.h>
#else
#include <iostream>
#endif
+#if defined(XALAN_RTTI_AVAILABLE) && !defined(XALAN_NO_TYPEINFO)
+#include <typeinfo>
+#endif
+
#if !defined(NDEBUG) && defined(_MSC_VER)
@@ -1359,7 +1361,7 @@
<< "\" Node value: \""
<< theInstance->getNodeValue()
<< "\""
-#if defined(XALAN_RTTI_AVAILABLE) && !defined(XALAN_NO_TYPEINFO)
+#if defined(XALAN_RTTI_AVAILABLE)
<< " Type: \""
<< typeid(*theInstance).name()
<< "\""
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]