diff --git a/include/reporters/catch_reporter_compact.cpp b/include/reporters/catch_reporter_compact.cpp index e9c44ea6..74df8d50 100644 --- a/include/reporters/catch_reporter_compact.cpp +++ b/include/reporters/catch_reporter_compact.cpp @@ -245,10 +245,6 @@ private: return "Reports test results on a single line, suitable for IDEs"; } - ReporterPreferences CompactReporter::getPreferences() const { - return m_reporterPrefs; - } - void CompactReporter::noMatchingTestCases( std::string const& spec ) { stream << "No test cases matched '" << spec << '\'' << std::endl; } diff --git a/include/reporters/catch_reporter_compact.h b/include/reporters/catch_reporter_compact.h index 5002df7b..fe33a220 100644 --- a/include/reporters/catch_reporter_compact.h +++ b/include/reporters/catch_reporter_compact.h @@ -22,8 +22,6 @@ namespace Catch { static std::string getDescription(); - ReporterPreferences getPreferences() const override; - void noMatchingTestCases(std::string const& spec) override; void assertionStarting(AssertionInfo const&) override;