dbertoni 00/08/31 14:05:33
Modified: c/src/TestXSLT process.cpp
Log:
Fixed #ifdef.
Revision Changes Path
1.36 +3 -1 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.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- process.cpp 2000/08/31 19:42:53 1.35
+++ process.cpp 2000/08/31 21:05:33 1.36
@@ -65,6 +65,8 @@
#include <string>
#include <strstream>
+
+
#if !defined(NDEBUG) && defined(_MSC_VER)
#include <crtdbg.h>
#endif
@@ -1022,7 +1024,7 @@
int argc,
const char* argv[])
{
-#if !defined(XALAN_USE_ICU) && defined(NDEBUG) && defined(_MSC_VER)
+#if !defined(XALAN_USE_ICU) && !defined(NDEBUG) && defined(_MSC_VER)
_CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) |
_CRTDBG_LEAK_CHECK_DF);
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);