mirror of
https://github.com/anope/anope.git
synced 2026-07-02 02:46:39 +02:00
Replace anope_{final,override} with their C++11 equivalent.
This commit is contained in:
@@ -20,7 +20,7 @@ class CommandCSSync : public Command
|
||||
this->SetSyntax(_("\037channel\037"));
|
||||
}
|
||||
|
||||
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
||||
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override
|
||||
{
|
||||
ChannelInfo *ci = ChannelInfo::Find(params[0]);
|
||||
|
||||
@@ -42,7 +42,7 @@ class CommandCSSync : public Command
|
||||
}
|
||||
}
|
||||
|
||||
bool OnHelp(CommandSource &source, const Anope::string ¶ms) anope_override
|
||||
bool OnHelp(CommandSource &source, const Anope::string ¶ms) override
|
||||
{
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
|
||||
Reference in New Issue
Block a user