Update of /cvsroot/cppunit/cppunit/src/DllPlugInTester
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv4426/src/DllPlugInTester
Modified Files:
CommandLineParser.cpp
Log Message:
Arrange class initializers in correct order.
Index: CommandLineParser.cpp
===================================================================
RCS file: /cvsroot/cppunit/cppunit/src/DllPlugInTester/CommandLineParser.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** CommandLineParser.cpp 18 Jun 2004 08:15:29 -0000 1.6
--- CommandLineParser.cpp 12 Jan 2007 05:56:34 -0000 1.7
***************
*** 4,9 ****
CommandLineParser::CommandLineParser( int argc,
const char *argv[] )
! : m_currentArgument( 0 )
! , m_useCompiler( false )
, m_useXml( false )
, m_briefProgress( false )
--- 4,8 ----
CommandLineParser::CommandLineParser( int argc,
const char *argv[] )
! : m_useCompiler( false )
, m_useXml( false )
, m_briefProgress( false )
***************
*** 12,15 ****
--- 11,15 ----
, m_useCout( false )
, m_waitBeforeExit( false )
+ , m_currentArgument( 0 )
{
for ( int index =1; index < argc; ++index )
|