summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-05-03 21:40:21 +0100
committerSadie Powell <sadie@witchery.services>2025-05-03 21:40:21 +0100
commit5752c07a564476de39447f564ef8836c117c6486 (patch)
treee836ccc03de1cbc69eb492a32a3312d53d4eaaea /modules
parent010beb52b1f3c697a07f9a130d2ed9335fe1cd98 (diff)
Fix a missing override keyword.
Diffstat (limited to 'modules')
-rw-r--r--modules/protocol/inspircd.cpp2
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;