mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Changed initialization order to avoid some warnings when compiling with g++.
This commit is contained in:
parent
1b96cec8f2
commit
4aa36f6071
@ -40,20 +40,20 @@ namespace Catch
|
||||
public:
|
||||
|
||||
ResultInfo()
|
||||
: m_result( ResultWas::Unknown ),
|
||||
: m_line( 0 ),
|
||||
m_result( ResultWas::Unknown ),
|
||||
m_isNot( false ),
|
||||
m_line( 0 ),
|
||||
m_expressionIncomplete( false )
|
||||
{}
|
||||
|
||||
ResultInfo( const std::string& expr, ResultWas::OfType result, bool isNot, const std::string& filename, std::size_t line, const std::string& macroName )
|
||||
: m_expr( expr ),
|
||||
m_result( result ),
|
||||
m_isNot( isNot ),
|
||||
m_op( m_expr[0] == '!' ? "!" : "" ),
|
||||
: m_macroName( macroName ),
|
||||
m_filename( filename ),
|
||||
m_line( line ),
|
||||
m_macroName( macroName ),
|
||||
m_expr( expr ),
|
||||
m_op( m_expr[0] == '!' ? "!" : "" ),
|
||||
m_result( result ),
|
||||
m_isNot( isNot ),
|
||||
m_expressionIncomplete( false )
|
||||
{
|
||||
}
|
||||
|
@ -74,9 +74,9 @@ namespace Catch
|
||||
{
|
||||
public:
|
||||
explicit Runner( const RunnerConfig& config )
|
||||
: m_successes( 0 ),
|
||||
: m_config( config ),
|
||||
m_successes( 0 ),
|
||||
m_failures( 0 ),
|
||||
m_config( config ),
|
||||
m_reporter( m_config.getReporter() )
|
||||
{
|
||||
m_reporter->StartTesting();
|
||||
|
@ -43,8 +43,8 @@ namespace Catch
|
||||
|
||||
|
||||
RunnerConfig()
|
||||
: m_listSpec( listNone ),
|
||||
m_reporter( NULL ),
|
||||
: m_reporter( NULL ),
|
||||
m_listSpec( listNone ),
|
||||
m_shouldDebugBreak( false )
|
||||
{}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user