summaryrefslogtreecommitdiff
path: root/src/DllPlugInTester/CommandLineParser.cpp
diff options
context:
space:
mode:
authorSteve M. Robbins <smr@sumost.ca>2007-01-12 04:56:34 +0000
committerSteve M. Robbins <smr@sumost.ca>2007-01-12 04:56:34 +0000
commit23c7ea0eeb8eb15b310475b08cf2418ef3035ae8 (patch)
tree30786d722a00f2ba65fe34b255f8917630cf6d7c /src/DllPlugInTester/CommandLineParser.cpp
parentf3c96127c3603c7f28f76b8996444c7d56c65dee (diff)
downloadcppunit-23c7ea0eeb8eb15b310475b08cf2418ef3035ae8.tar.gz
Arrange class initializers in correct order.
Diffstat (limited to 'src/DllPlugInTester/CommandLineParser.cpp')
-rw-r--r--src/DllPlugInTester/CommandLineParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DllPlugInTester/CommandLineParser.cpp b/src/DllPlugInTester/CommandLineParser.cpp
index f4c19f5..1ad0245 100644
--- a/src/DllPlugInTester/CommandLineParser.cpp
+++ b/src/DllPlugInTester/CommandLineParser.cpp
@@ -3,14 +3,14 @@
CommandLineParser::CommandLineParser( int argc,
const char *argv[] )
- : m_currentArgument( 0 )
- , m_useCompiler( false )
+ : m_useCompiler( false )
, m_useXml( false )
, m_briefProgress( false )
, m_noProgress( false )
, m_useText( false )
, m_useCout( false )
, m_waitBeforeExit( false )
+ , m_currentArgument( 0 )
{
for ( int index =1; index < argc; ++index )
{