aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/tests/catchy/catchy_tests.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tests/catchy/catchy_tests.h b/src/tests/catchy/catchy_tests.h
index 99ad03f31..ab621d0f9 100644
--- a/src/tests/catchy/catchy_tests.h
+++ b/src/tests/catchy/catchy_tests.h
@@ -66,10 +66,10 @@ namespace Matchers {
virtual ~Equals() override {}
- virtual bool match( bool const& expr ) const {
+ virtual bool match( bool const& expr ) const override {
return m_expected == expr;
}
- virtual std::string toString() const {
+ virtual std::string toString() const override {
return "== " + Catch::toString(m_expected);
}
@@ -86,10 +86,10 @@ namespace Matchers {
virtual ~Equals() override {}
- virtual bool match( T const& expr ) const {
+ virtual bool match( T const& expr ) const override {
return m_expected == expr;
}
- virtual std::string toString() const {
+ virtual std::string toString() const override {
return "== " + Catch::toString(m_expected);
}