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:
@@ -24,7 +24,7 @@ class CKeepNickMod;
|
||||
class CKeepNickTimer : public CTimer {
|
||||
public:
|
||||
CKeepNickTimer(CKeepNickMod* pMod);
|
||||
~CKeepNickTimer() {}
|
||||
~CKeepNickTimer() override {}
|
||||
|
||||
void RunJob() override;
|
||||
|
||||
@@ -47,7 +47,7 @@ class CKeepNickMod : public CModule {
|
||||
"", "Show the current state");
|
||||
}
|
||||
|
||||
~CKeepNickMod() {}
|
||||
~CKeepNickMod() override {}
|
||||
|
||||
bool OnLoad(const CString& sArgs, CString& sMessage) override {
|
||||
m_pTimer = nullptr;
|
||||
|
||||
Reference in New Issue
Block a user