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

@@ -30,7 +30,7 @@ class CSimpleAwayJob : public CTimer {
const CString& sDescription)
: CTimer(pModule, uInterval, uCycles, sLabel, sDescription) {}
virtual ~CSimpleAwayJob() {}
~CSimpleAwayJob() override {}
protected:
void RunJob() override;
@@ -76,7 +76,7 @@ class CSimpleAway : public CModule {
"", "Get or set the minimum number of clients before going away");
}
virtual ~CSimpleAway() {}
~CSimpleAway() override {}
bool OnLoad(const CString& sArgs, CString& sMessage) override {
CString sReasonArg;