aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_servprotect.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2019-01-25 02:52:11 +0000
committerGravatar Sadie Powell2019-01-25 02:52:11 +0000
commitc78ecdf579c0bf0a75ed0f9641ffef8d89c17ec8 (patch)
tree4d7b4e6135e4b8340698419a83bc29edec18a5ea /src/modules/m_servprotect.cpp
parentRemove the DEPRECATED_METHOD macro. (diff)
Replace the override macro with the override keyword.
Diffstat (limited to 'src/modules/m_servprotect.cpp')
-rw-r--r--src/modules/m_servprotect.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/m_servprotect.cpp b/src/modules/m_servprotect.cpp
index a5d7a82e4..6850bf592 100644
--- a/src/modules/m_servprotect.cpp
+++ b/src/modules/m_servprotect.cpp
@@ -38,7 +38,7 @@ class ServProtectMode : public ModeHandler
public:
ServProtectMode(Module* Creator) : ModeHandler(Creator, "servprotect", 'k', PARAM_NONE, MODETYPE_USER) { oper = true; }
- ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string& parameter, bool adding) CXX11_OVERRIDE
+ ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string& parameter, bool adding) override
{
/* Because this returns MODEACTION_DENY all the time, there is only ONE
* way to add this mode and that is at client introduction in the UID command,
@@ -63,12 +63,12 @@ class ModuleServProtectMode : public Module, public Whois::EventListener, public
{
}
- Version GetVersion() CXX11_OVERRIDE
+ Version GetVersion() override
{
return Version("Provides usermode +k to protect services from kicks, kills, and mode changes.", VF_VENDOR);
}
- void OnWhois(Whois::Context& whois) CXX11_OVERRIDE
+ void OnWhois(Whois::Context& whois) override
{
if (whois.GetTarget()->IsModeSet(bm))
{
@@ -76,7 +76,7 @@ class ModuleServProtectMode : public Module, public Whois::EventListener, public
}
}
- ModResult OnRawMode(User* user, Channel* chan, ModeHandler* mh, const std::string& param, bool adding) CXX11_OVERRIDE
+ ModResult OnRawMode(User* user, Channel* chan, ModeHandler* mh, const std::string& param, bool adding) override
{
/* Check that the mode is not a server mode, it is being removed, the user making the change is local, there is a parameter,
* and the user making the change is not a uline
@@ -109,7 +109,7 @@ class ModuleServProtectMode : public Module, public Whois::EventListener, public
return MOD_RES_PASSTHRU;
}
- ModResult OnKill(User* src, User* dst, const std::string &reason) CXX11_OVERRIDE
+ ModResult OnKill(User* src, User* dst, const std::string &reason) override
{
if (src == NULL)
return MOD_RES_PASSTHRU;
@@ -123,7 +123,7 @@ class ModuleServProtectMode : public Module, public Whois::EventListener, public
return MOD_RES_PASSTHRU;
}
- ModResult OnUserPreKick(User *src, Membership* memb, const std::string &reason) CXX11_OVERRIDE
+ ModResult OnUserPreKick(User *src, Membership* memb, const std::string &reason) override
{
if (memb->user->IsModeSet(bm))
{
@@ -134,7 +134,7 @@ class ModuleServProtectMode : public Module, public Whois::EventListener, public
return MOD_RES_PASSTHRU;
}
- ModResult OnWhoisLine(Whois::Context& whois, Numeric::Numeric& numeric) CXX11_OVERRIDE
+ ModResult OnWhoisLine(Whois::Context& whois, Numeric::Numeric& numeric) override
{
return ((numeric.GetNumeric() == 319) && whois.GetTarget()->IsModeSet(bm)) ? MOD_RES_DENY : MOD_RES_PASSTHRU;
}