summaryrefslogtreecommitdiff
path: root/src/modules/m_timedbans.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2017-07-12 15:38:53 +0100
committerGitHub <noreply@github.com>2017-07-12 15:38:53 +0100
commit834c94679b7df475e50d87ccb11311e297a78718 (patch)
tree9716604ae148935501025453751b2923b8dafd7d /src/modules/m_timedbans.cpp
parentc6a508a3da977041909f18f77d6e8fea942512cf (diff)
parentd1df2bce56275e1297d94d82d4dbef6f6cf582b6 (diff)
Merge pull request #1211 from SaberUK/master+override
Add CXX11_OVERRIDE to overridden members that lack it.
Diffstat (limited to 'src/modules/m_timedbans.cpp')
-rw-r--r--src/modules/m_timedbans.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_timedbans.cpp b/src/modules/m_timedbans.cpp
index 874e6440f..44c6c4c4f 100644
--- a/src/modules/m_timedbans.cpp
+++ b/src/modules/m_timedbans.cpp
@@ -218,7 +218,7 @@ class ModuleTimedBans : public Module
}
}
- void OnChannelDelete(Channel* chan)
+ void OnChannelDelete(Channel* chan) CXX11_OVERRIDE
{
// Remove all timed bans affecting the channel from internal bookkeeping
TimedBanList.erase(std::remove_if(TimedBanList.begin(), TimedBanList.end(), ChannelMatcher(chan)), TimedBanList.end());