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
+1 -1
View File
@@ -84,7 +84,7 @@ class CPartylineMod : public CModule {
"", "List all open channels");
}
virtual ~CPartylineMod() {
~CPartylineMod() override {
// Kick all clients who are in partyline channels
for (set<CPartylineChannel*>::iterator it = m_ssChannels.begin();
it != m_ssChannels.end(); ++it) {