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

@@ -50,7 +50,7 @@ class CSaveBuffJob : public CTimer {
const CString& sLabel, const CString& sDescription)
: CTimer(pModule, uInterval, uCycles, sLabel, sDescription) {}
virtual ~CSaveBuffJob() {}
~CSaveBuffJob() override {}
protected:
void RunJob() override;
@@ -72,7 +72,7 @@ class CSaveBuff : public CModule {
&CSaveBuff::OnSaveCommand),
"", "Saves all buffers");
}
virtual ~CSaveBuff() {
~CSaveBuff() override {
if (!m_bBootError) {
SaveBuffersToDisk();
}