1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 22:16:37 +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
+2 -2
View File
@@ -139,7 +139,7 @@ class ExceptionDelCallback : public NumberList
{
}
~ExceptionDelCallback()
~ExceptionDelCallback() override
{
if (!deleted)
source.Reply(_("No matching entries on session-limit exception list."));
@@ -149,7 +149,7 @@ class ExceptionDelCallback : public NumberList
source.Reply(_("Deleted %d entries from session-limit exception list."), deleted);
}
virtual void HandleNumber(unsigned number) override
void HandleNumber(unsigned number) override
{
if (!number || number > session_service->GetExceptions().size())
return;