diff --git a/src/catch2/reporters/catch_reporter_streaming_base.hpp b/src/catch2/reporters/catch_reporter_streaming_base.hpp index ddd10c5e..c51595e6 100644 --- a/src/catch2/reporters/catch_reporter_streaming_base.hpp +++ b/src/catch2/reporters/catch_reporter_streaming_base.hpp @@ -55,6 +55,9 @@ namespace Catch { m_sectionStack.push_back(_sectionInfo); } + void assertionStarting( AssertionInfo const& ) override {} + bool assertionEnded( AssertionStats const& ) override { return true; } + void sectionEnded(SectionStats const& /* _sectionStats */) override { m_sectionStack.pop_back(); }