Tidy up after merge mess

This commit is contained in:
Phil Nash 2010-11-29 22:52:27 +00:00
parent fa9f970890
commit 9a703f73d4
2 changed files with 3 additions and 8 deletions

View File

@ -263,14 +263,7 @@ public:
{
instance().currentResult.setMessage( msg );
}
static void acceptSectionStart( const std::string& name, const std::string& description )
{
}
static void acceptSectionEnd( const std::string& name )
{
}
static bool acceptSectionStart( const std::string& name, const std::string& description, std::size_t& successes, std::size_t& failures )
{
return instance().m_listener->sectionStarted( name, description, successes, failures );

View File

@ -141,6 +141,8 @@ namespace Catch
m_reporter->StartSection( name, description );
successes = m_successes;
failures = m_failures;
// !TBD look up whether we should execute this section or not
return true;
}