diff options
author | Sadie Powell <sadie@witchery.services> | 2025-05-03 21:40:21 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-05-03 21:40:21 +0100 |
commit | 5752c07a564476de39447f564ef8836c117c6486 (patch) | |
tree | e836ccc03de1cbc69eb492a32a3312d53d4eaaea | |
parent | 010beb52b1f3c697a07f9a130d2ed9335fe1cd98 (diff) |
Fix 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 684c32efe..49b359857 100644 --- a/modules/protocol/inspircd.cpp +++ b/modules/protocol/inspircd.cpp @@ -434,7 +434,7 @@ public: Uplink::SendInternal({}, Me, "NUM", newparams); } - void SendMode(const MessageSource &source, Channel *chan, const ModeManager::Change &change) + void SendMode(const MessageSource &source, Channel *chan, const ModeManager::Change &change) override { std::map<char, std::vector<Anope::string>> listchanges; ModeManager::Change otherchanges; |