From 07ff5f39fd6206e0af82cd51a2a833c9883ed7df Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 28 Dec 2011 10:28:56 +0000 Subject: [PATCH] GitHub issue #62 Initialise m_firstSectionInTestCase in Basic Reporter --- include/reporters/catch_reporter_basic.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/reporters/catch_reporter_basic.hpp b/include/reporters/catch_reporter_basic.hpp index 35e86df5..1a370464 100644 --- a/include/reporters/catch_reporter_basic.hpp +++ b/include/reporters/catch_reporter_basic.hpp @@ -46,7 +46,8 @@ namespace Catch ( const IReporterConfig& config ) - : m_config( config ) + : m_config( config ), + m_firstSectionInTestCase( true ) { }