mirror of
https://github.com/znc/znc.git
synced 2026-08-06 08:52:57 +02:00
Replace virtual with override where possible.
Using clang-tidy
This commit is contained in:
+2
-2
@@ -24,8 +24,8 @@ using ::testing::ContainerEq;
|
||||
|
||||
class BufferTest : public ::testing::Test {
|
||||
protected:
|
||||
void SetUp() { CZNC::CreateInstance(); }
|
||||
void TearDown() { CZNC::DestroyInstance(); }
|
||||
void SetUp() override { CZNC::CreateInstance(); }
|
||||
void TearDown() override { CZNC::DestroyInstance(); }
|
||||
};
|
||||
|
||||
TEST_F(BufferTest, BufLine) {
|
||||
|
||||
Reference in New Issue
Block a user