mirror of
https://github.com/znc/znc.git
synced 2026-05-02 11:32:29 +02:00
Replace virtual with override where possible.
Using clang-tidy
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user