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
+2 -2
View File
@@ -49,7 +49,7 @@ class CAwayJob : public CTimer {
const CString& sLabel, const CString& sDescription)
: CTimer(pModule, uInterval, uCycles, sLabel, sDescription) {}
virtual ~CAwayJob() {}
~CAwayJob() override {}
protected:
void RunJob() override;
@@ -250,7 +250,7 @@ class CAway : public CModule {
static_cast<CModCommand::ModCmdFunc>(&CAway::TimerCommand));
}
virtual ~CAway() {
~CAway() override {
if (!m_bBootError) SaveBufferToDisk();
}