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

@@ -21,8 +21,8 @@
class NetworkTest : public ::testing::Test {
protected:
void SetUp() { CZNC::CreateInstance(); }
void TearDown() { CZNC::DestroyInstance(); }
void SetUp() override { CZNC::CreateInstance(); }
void TearDown() override { CZNC::DestroyInstance(); }
};
TEST_F(NetworkTest, FindChan) {