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