Replace virtual with override where possible.

Using clang-tidy
This commit is contained in:
Alexey Sokolov
2015-12-08 20:51:50 +00:00
parent 79e979e5cd
commit 16a8c77737
59 changed files with 101 additions and 104 deletions

View File

@@ -25,8 +25,8 @@ using ::testing::MatchesRegex;
class QueryTest : public ::testing::Test {
protected:
void SetUp() { CZNC::CreateInstance(); }
void TearDown() { CZNC::DestroyInstance(); }
void SetUp() override { CZNC::CreateInstance(); }
void TearDown() override { CZNC::DestroyInstance(); }
};
TEST_F(QueryTest, Name) {