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

Fix missing override keywords.

This commit is contained in:
Sadie Powell
2023-03-06 16:11:54 +00:00
parent d210cd2695
commit 29db25dac7
40 changed files with 66 additions and 66 deletions
+2 -2
View File
@@ -165,9 +165,9 @@ class CommandBSKickBase : public Command
{
}
virtual void Execute(CommandSource &source, const std::vector<Anope::string> &params) override = 0;
void Execute(CommandSource &source, const std::vector<Anope::string> &params) override = 0;
virtual bool OnHelp(CommandSource &source, const Anope::string &subcommand) override = 0;
bool OnHelp(CommandSource &source, const Anope::string &subcommand) override = 0;
protected:
bool CheckArguments(CommandSource &source, const std::vector<Anope::string> &params, ChannelInfo* &ci)