summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2023-10-24 18:10:32 +0100
committerSadie Powell <sadie@witchery.services>2023-10-24 18:10:32 +0100
commit1eba69d0352b8396de19ab0b19f3aa7d2eb2ef87 (patch)
treecb04a76a6ff3e150574557310000d3de79813097
parenteb409fc6eb4dfbf82b6dca5a55577c8d6f4882c5 (diff)
Fix a missing override keyword.
-rw-r--r--modules/protocol/inspircd3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/inspircd3.cpp b/modules/protocol/inspircd3.cpp
index 40da697e7..79db757ea 100644
--- a/modules/protocol/inspircd3.cpp
+++ b/modules/protocol/inspircd3.cpp
@@ -112,7 +112,7 @@ class InspIRCd3Proto : public IRCDProto
user->KillInternal(source, buf);
}
- void SendForceNickChange(User *u, const Anope::string &newnick, time_t when)
+ void SendForceNickChange(User *u, const Anope::string &newnick, time_t when) anope_override
{
UplinkSocket::Message() << "SVSNICK " << u->GetUID() << " " << newnick << " " << when << " " << u->timestamp;
}