summaryrefslogtreecommitdiff
path: root/src/DllPlugInTester/CommandLineParserTest.cpp
diff options
context:
space:
mode:
authorSteve M. Robbins <smr@sumost.ca>2008-02-21 02:10:06 +0000
committerSteve M. Robbins <smr@sumost.ca>2008-02-21 02:10:06 +0000
commita5a498561726d1396a681d1a8061156b90a56ec7 (patch)
treead13d903e8367e40f0d7a2d5ae53a1347359e91a /src/DllPlugInTester/CommandLineParserTest.cpp
parent4d73457619973f386444f86be1bf0f00a7093595 (diff)
downloadcppunit-a5a498561726d1396a681d1a8061156b90a56ec7.tar.gz
Changes to suppress warnings of gcc -Wall -W -ansi, mainly from patch [1898225].
Diffstat (limited to 'src/DllPlugInTester/CommandLineParserTest.cpp')
-rw-r--r--src/DllPlugInTester/CommandLineParserTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DllPlugInTester/CommandLineParserTest.cpp b/src/DllPlugInTester/CommandLineParserTest.cpp
index b521eb2..2ee2a52 100644
--- a/src/DllPlugInTester/CommandLineParserTest.cpp
+++ b/src/DllPlugInTester/CommandLineParserTest.cpp
@@ -32,7 +32,8 @@ void
CommandLineParserTest::parse( const char **lines )
{
int count =0;
- for ( const char **line = lines; *line != NULL; ++line, ++count );
+ for ( const char **line = lines; *line != NULL; ++line, ++count )
+ ;
delete _parser;
_parser = new CommandLineParser( count, lines );