1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 13:26:38 +02:00

Fix a missing override keyword.

This commit is contained in:
Sadie Powell
2023-10-24 18:10:32 +01:00
parent eb409fc6eb
commit 1eba69d035
+1 -1
View File
@@ -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;
}