Most of system now uses Ptr<IConfig const>

This commit is contained in:
Phil Nash 2013-05-28 18:51:53 +01:00
parent e1459955f1
commit ca9b92f8fa
7 changed files with 19 additions and 18 deletions

View file

@ -39,7 +39,7 @@ namespace Catch {
filterGroups.push_back( filterGroup );
}
Runner context( m_config, m_reporter ); // This Runner will be renamed Context
Runner context( m_config.get(), m_reporter ); // This Runner will be renamed Context
Totals totals;
for( std::size_t i=0; i < filterGroups.size() && !context.aborting(); ++i ) {