dbertoni 2003/08/20 11:43:33
Modified: c/src/xalanc/TestXSLT process.cpp
c/src/xalanc/XalanExe XalanExe.cpp
Log:
Removed const qualifier from argv.
Revision Changes Path
1.3 +1 -1 xml-xalan/c/src/xalanc/TestXSLT/process.cpp
Index: process.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/xalanc/TestXSLT/process.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- process.cpp 20 Aug 2003 15:53:30 -0000 1.2
+++ process.cpp 20 Aug 2003 18:43:33 -0000 1.3
@@ -391,7 +391,7 @@
bool
getArgs(
int argc,
- const char* argv[],
+ char* argv[],
CmdLineParams& p)
{
bool fSuccess = true;
1.7 +5 -5 xml-xalan/c/src/xalanc/XalanExe/XalanExe.cpp
Index: XalanExe.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/xalanc/XalanExe/XalanExe.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- XalanExe.cpp 20 Aug 2003 15:53:30 -0000 1.6
+++ XalanExe.cpp 20 Aug 2003 18:43:33 -0000 1.7
@@ -290,9 +290,9 @@
bool
getArgs(
- int argc,
- const char* argv[],
- Params& params)
+ int argc,
+ char* argv[],
+ Params& params)
{
bool fSuccess = true;
@@ -770,8 +770,8 @@
int
xsltMain(
- int argc,
- const char* argv[])
+ int argc,
+ char* argv[])
{
int theResult = -1;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]