dbertoni 02/04/10 23:38:31 Modified: c/src/TestXSLT process.cpp Log: Cleanup for picky compilers. Revision Changes Path 1.84 +5 -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.83 retrieving revision 1.84 diff -u -r1.83 -r1.84 --- process.cpp 23 Feb 2002 04:19:32 -0000 1.83 +++ process.cpp 11 Apr 2002 06:38:31 -0000 1.84 @@ -451,7 +451,11 @@ if(i < argc && argv[i][0] != '-') { +#if defined(XALAN_STRICT_ANSI_HEADERS) + p.indentAmount = std::atoi(argv[i]); +#else p.indentAmount = atoi(argv[i]); +#endif } else { @@ -597,7 +601,7 @@ { p.extentionsNamespace = argv[i]; - if (strlen(p.extentionsNamespace) == 0) + if (XalanDOMString::length(p.extentionsNamespace) == 0) { fSuccess = false; }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]