diff --git a/src/catch2/catch_interfaces_reporter.cpp b/src/catch2/catch_interfaces_reporter.cpp index 1986b806..4fa753c0 100644 --- a/src/catch2/catch_interfaces_reporter.cpp +++ b/src/catch2/catch_interfaces_reporter.cpp @@ -112,7 +112,6 @@ namespace Catch { TestRunStats::~TestRunStats() = default; void IStreamingReporter::fatalErrorEncountered( StringRef ) {} - bool IStreamingReporter::isMulti() const { return false; } void IStreamingReporter::listReporters(std::vector const& descriptions, Config const& config) { Catch::cout() << "Available reporters:\n"; diff --git a/src/catch2/catch_interfaces_reporter.h b/src/catch2/catch_interfaces_reporter.h index 97ad6cae..a4cd9d8b 100644 --- a/src/catch2/catch_interfaces_reporter.h +++ b/src/catch2/catch_interfaces_reporter.h @@ -241,8 +241,6 @@ namespace Catch { // Default empty implementation provided virtual void fatalErrorEncountered( StringRef name ); - virtual bool isMulti() const; - // Listing support virtual void listReporters(std::vector const& descriptions, Config const& config); virtual void listTests(std::vector const& tests, Config const& config); diff --git a/src/catch2/reporters/catch_reporter_listening.cpp b/src/catch2/reporters/catch_reporter_listening.cpp index 01335a49..08f30659 100644 --- a/src/catch2/reporters/catch_reporter_listening.cpp +++ b/src/catch2/reporters/catch_reporter_listening.cpp @@ -150,10 +150,6 @@ namespace Catch { m_reporter->skipTest( testInfo ); } - bool ListeningReporter::isMulti() const { - return true; - } - void ListeningReporter::listReporters(std::vector const& descriptions, Config const& config) { for (auto const& listener : m_listeners) { listener->listReporters(descriptions, config); diff --git a/src/catch2/reporters/catch_reporter_listening.h b/src/catch2/reporters/catch_reporter_listening.h index e33aa283..032d8a18 100644 --- a/src/catch2/reporters/catch_reporter_listening.h +++ b/src/catch2/reporters/catch_reporter_listening.h @@ -50,7 +50,6 @@ namespace Catch { void testRunEnded( TestRunStats const& testRunStats ) override; void skipTest( TestCaseInfo const& testInfo ) override; - bool isMulti() const override; void listReporters(std::vector const& descriptions, Config const& config) override; void listTests(std::vector const& tests, Config const& config) override;