diff options
author | Sadie Powell <sadie@witchery.services> | 2025-03-09 19:49:28 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-03-09 19:49:28 +0000 |
commit | b8c28419dad7943dd23a0b9f0f5ef28f3cc5ccda (patch) | |
tree | e820ef7560d291642c589a62acc506ebaf14e0a1 | |
parent | 1c4f9042e776efe1e6fcab18cf0628e071697b57 (diff) |
Add a missing override keyword.
-rw-r--r-- | modules/protocol/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/inspircd.cpp b/modules/protocol/inspircd.cpp index fdc78558d..a62aeb4d7 100644 --- a/modules/protocol/inspircd.cpp +++ b/modules/protocol/inspircd.cpp @@ -255,7 +255,7 @@ public: Uplink::Send(user, "SVSCMODE", u->GetUID(), c->name, 'b'); } - void SendQuit(User *u, const Anope::string &buf, const Anope::string &operbuf) + void SendQuit(User *u, const Anope::string &buf, const Anope::string &operbuf) override { if (!operbuf.empty()) Uplink::Send("METADATA", u->GetUID(), "operquit", operbuf); |