Merge pull request #1336 from ax3l/topic-overrideVirtualRedundant

Refactor: override implies virtual
This commit is contained in:
Martin Hořeňovský
2019-04-18 14:10:24 +02:00
committed by GitHub
9 changed files with 31 additions and 31 deletions

View File

@@ -92,7 +92,7 @@ public:
IntRange( int begin, int end ) : m_begin( begin ), m_end( end ) {}
// Performs the test for this matcher
virtual bool match( int const& i ) const override {
bool match( int const& i ) const override {
return i >= m_begin && i <= m_end;
}