diff options
author | Adam <Adam@anope.org> | 2012-02-18 15:04:26 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-02-18 15:04:26 -0500 |
commit | ee5cd8493e34a1c049066ead25e9094b30cd49b5 (patch) | |
tree | 846c6dcd9bb2c4d721c6290a9b9d6b6ed880acdb /modules/commands/bs_kick.cpp | |
parent | 41e8d276023e8fefc22fb89c2f81ae17b8222155 (diff) |
Use C++11's explicit override feature if available
Diffstat (limited to 'modules/commands/bs_kick.cpp')
-rw-r--r-- | modules/commands/bs_kick.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/commands/bs_kick.cpp b/modules/commands/bs_kick.cpp index cccdd5b35..5824a8650 100644 --- a/modules/commands/bs_kick.cpp +++ b/modules/commands/bs_kick.cpp @@ -23,7 +23,7 @@ class CommandBSKick : public Command this->SetSyntax(_("\037channel\037 \037option\037 {\037ON|\037} [\037settings\037]")); } - void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) + void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override { const Anope::string &chan = params[0]; const Anope::string &option = params[1]; @@ -459,7 +459,7 @@ class CommandBSKick : public Command return; } - bool OnHelp(CommandSource &source, const Anope::string &subcommand) + bool OnHelp(CommandSource &source, const Anope::string &subcommand) anope_override { if (subcommand.empty()) { @@ -626,7 +626,7 @@ struct BanData : public ExtensibleItem } } - void OnDelete() + void OnDelete() anope_override { delete this; } @@ -659,7 +659,7 @@ struct UserData : public ExtensibleItem Anope::string lastline; - void OnDelete() + void OnDelete() anope_override { delete this; } @@ -671,7 +671,7 @@ class BanDataPurger : public CallBack public: BanDataPurger(Module *owner) : CallBack(owner, 300, Anope::CurTime, true) { } - void Tick(time_t) + void Tick(time_t) anope_override { Log(LOG_DEBUG) << "bs_main: Running bandata purger"; @@ -785,7 +785,7 @@ class BSKick : public Module } } - void OnPrivmsg(User *u, Channel *c, Anope::string &msg) + void OnPrivmsg(User *u, Channel *c, Anope::string &msg) anope_override { /* Now we can make kicker stuff. We try to order the checks * from the fastest one to the slowest one, since there's |