summaryrefslogtreecommitdiff
path: root/src/DllPlugInTester/CommandLineParser.cpp
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2004-06-18 07:15:55 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2004-06-18 07:15:55 +0000
commit8a5c5134d51ca4982b435a14e062bac6b5a49704 (patch)
treeacfcbc449bce4ee3f0fa6036fa07d851befb8bfd /src/DllPlugInTester/CommandLineParser.cpp
parent3bbf1aebb2c0d461b03f6cd8e3b2f964f3d00aeb (diff)
downloadcppunit-8a5c5134d51ca4982b435a14e062bac6b5a49704.tar.gz
Src/DllPlugInTester/
src/DllPlugInTester/*.cpp: bug #941625, string literal using char * instead of const char *. Patch contributed by Curt Arnold has been applied.
Diffstat (limited to 'src/DllPlugInTester/CommandLineParser.cpp')
-rw-r--r--src/DllPlugInTester/CommandLineParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DllPlugInTester/CommandLineParser.cpp b/src/DllPlugInTester/CommandLineParser.cpp
index 4aecacb..f4c19f5 100644
--- a/src/DllPlugInTester/CommandLineParser.cpp
+++ b/src/DllPlugInTester/CommandLineParser.cpp
@@ -2,7 +2,7 @@
CommandLineParser::CommandLineParser( int argc,
- char *argv[] )
+ const char *argv[] )
: m_currentArgument( 0 )
, m_useCompiler( false )
, m_useXml( false )