diff options
| author | 2017-07-12 14:41:52 +0100 | |
|---|---|---|
| committer | 2017-07-12 14:41:52 +0100 | |
| commit | d1df2bce56275e1297d94d82d4dbef6f6cf582b6 (patch) | |
| tree | 3b968cb8a2b3b90b74ae0633e2a4a7fa04782d8e /src/modules/m_messageflood.cpp | |
| parent | Merge pull request #1337 from SaberUK/master+merge (diff) | |
Add CXX11_OVERRIDE to overridden members that lack it.
This fixes a ton of warnings when building on compilers that
default to C++11 or newer.
Diffstat (limited to 'src/modules/m_messageflood.cpp')
| -rw-r--r-- | src/modules/m_messageflood.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_messageflood.cpp b/src/modules/m_messageflood.cpp index 7323605cb..d89de49eb 100644 --- a/src/modules/m_messageflood.cpp +++ b/src/modules/m_messageflood.cpp @@ -150,7 +150,7 @@ class ModuleMsgFlood : public Module return MOD_RES_PASSTHRU; } - void Prioritize() + void Prioritize() CXX11_OVERRIDE { // we want to be after all modules that might deny the message (e.g. m_muteban, m_noctcp, m_blockcolor, etc.) ServerInstance->Modules->SetPriority(this, I_OnUserPreMessage, PRIORITY_LAST); |
