Remove some uses of std::shared_ptr

This commit is contained in:
Martin Hořeňovský
2020-05-19 15:40:32 +02:00
parent 4394d3ae65
commit c2852c9944
4 changed files with 8 additions and 9 deletions

View File

@@ -21,8 +21,8 @@ namespace Catch {
return m_runner;
}
IConfigPtr const& getConfig() const override {
return m_config;
IConfig const* getConfig() const override {
return m_config.get();
}
~Context() override;