1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 12:06:38 +02:00

Fix missing override keywords.

This commit is contained in:
Sadie Powell
2023-03-06 16:11:54 +00:00
parent d210cd2695
commit 29db25dac7
40 changed files with 66 additions and 66 deletions
+1 -1
View File
@@ -441,7 +441,7 @@ class ProtoPlexus : public Module
this->AddModes();
}
~ProtoPlexus()
~ProtoPlexus() override
{
m_hybrid = ModuleManager::FindModule("hybrid");
ModuleManager::UnloadModule(m_hybrid, NULL);
+1 -1
View File
@@ -363,7 +363,7 @@ class ProtoRatbox : public Module
this->AddModes();
}
~ProtoRatbox()
~ProtoRatbox() override
{
m_hybrid = ModuleManager::FindModule("hybrid");
ModuleManager::UnloadModule(m_hybrid, NULL);
+1 -1
View File
@@ -401,7 +401,7 @@ class ProtoSolanum : public Module
this->AddModes();
}
~ProtoSolanum()
~ProtoSolanum() override
{
m_ratbox = ModuleManager::FindModule("ratbox");
ModuleManager::UnloadModule(m_ratbox, NULL);