Changed initialization order to avoid some warnings when compiling with g++.

This commit is contained in:
Michael Mortensen 2010-12-28 15:17:27 +01:00
parent 1b96cec8f2
commit 4aa36f6071
3 changed files with 12 additions and 12 deletions

View file

@ -43,8 +43,8 @@ namespace Catch
RunnerConfig()
: m_listSpec( listNone ),
m_reporter( NULL ),
: m_reporter( NULL ),
m_listSpec( listNone ),
m_shouldDebugBreak( false )
{}