Migrated Config and IConfig to shared_ptr (from Ptr)

This commit is contained in:
Phil Nash
2017-04-25 20:18:02 +01:00
parent 41afd0c3d4
commit 338ba6b9ba
10 changed files with 32 additions and 32 deletions

View File

@@ -92,7 +92,7 @@ namespace Catch {
// It can optionally be overridden in the derived class.
}
Ptr<IConfig const> m_config;
IConfigPtr m_config;
std::ostream& stream;
LazyStat<TestRunInfo> currentTestRunInfo;
@@ -244,7 +244,7 @@ namespace Catch {
result.expandDecomposedExpression();
}
Ptr<IConfig const> m_config;
IConfigPtr m_config;
std::ostream& stream;
std::vector<AssertionStats> m_assertions;
std::vector<std::vector<Ptr<SectionNode> > > m_sections;