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

@@ -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;