From 095a25d4731c7b2df73174eaedecae90aa1e610b Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Tue, 27 Apr 2021 21:41:19 +0100 Subject: Add the anope_override keyword to methods that lack it. --- modules/commands/cs_xop.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/commands/cs_xop.cpp') diff --git a/modules/commands/cs_xop.cpp b/modules/commands/cs_xop.cpp index 403920030..2b0cf413f 100644 --- a/modules/commands/cs_xop.cpp +++ b/modules/commands/cs_xop.cpp @@ -37,7 +37,7 @@ class XOPChanAccess : public ChanAccess return false; } - Anope::string AccessSerialize() const + Anope::string AccessSerialize() const anope_override { return this->type; } @@ -489,7 +489,7 @@ class CommandCSXOP : public Command return Anope::printf(Language::Translate(source.GetAccount(), _("Modify the list of %s users")), source.command.upper().c_str()); } - void Execute(CommandSource &source, const std::vector ¶ms) + void Execute(CommandSource &source, const std::vector ¶ms) anope_override { ChannelInfo *ci = ChannelInfo::Find(params[0]); if (ci == NULL) -- cgit