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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user