mirror of
https://github.com/catchorg/Catch2.git
synced 2025-06-03 10:27:57 +00:00
Previous implementation didn't work
It relied on calling a virtual method from a base constructer
This commit is contained in:
parent
f749347523
commit
058b21e604
11 changed files with 27 additions and 41 deletions
|
@ -77,10 +77,12 @@ namespace Catch {
|
|||
TestCaseStats::~TestCaseStats() {}
|
||||
TestGroupStats::~TestGroupStats() {}
|
||||
TestRunStats::~TestRunStats() {}
|
||||
CumulativeReporterBase::SectionNode::~SectionNode() {}
|
||||
CumulativeReporterBase::~CumulativeReporterBase() {}
|
||||
|
||||
StreamingReporterBase::~StreamingReporterBase() {}
|
||||
template<typename DerivedT>
|
||||
CumulativeReporterBase<DerivedT>::SectionNode::~SectionNode() {}
|
||||
template<typename DerivedT>
|
||||
CumulativeReporterBase<DerivedT>::~CumulativeReporterBase() {}
|
||||
template<typename DerivedT>
|
||||
StreamingReporterBase<DerivedT>::~StreamingReporterBase() {}
|
||||
ConsoleReporter::~ConsoleReporter() {}
|
||||
CompactReporter::~CompactReporter() {}
|
||||
IRunner::~IRunner() {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue