diff options
author | Peter Powell <petpow@saberuk.com> | 2018-12-16 01:26:04 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-12-16 01:41:47 +0000 |
commit | 8ec9a73a91ad1c7009fd3055fbad7c980b5e1732 (patch) | |
tree | 659a24d10eecf040cfc25a25ac093a8b3a752d15 /src/modules/m_delaymsg.cpp | |
parent | 0b36f9bdc8482284f0801a4a46b2525b32fa09a4 (diff) |
Fix ParamModeBase::OnUnset() not being virtual.
Closes #1536.
Diffstat (limited to 'src/modules/m_delaymsg.cpp')
-rw-r--r-- | src/modules/m_delaymsg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_delaymsg.cpp b/src/modules/m_delaymsg.cpp index 9015e7bf9..f13ea48ea 100644 --- a/src/modules/m_delaymsg.cpp +++ b/src/modules/m_delaymsg.cpp @@ -36,7 +36,7 @@ class DelayMsgMode : public ParamMode<DelayMsgMode, LocalIntExt> } ModeAction OnSet(User* source, Channel* chan, std::string& parameter) CXX11_OVERRIDE; - void OnUnset(User* source, Channel* chan); + void OnUnset(User* source, Channel* chan) CXX11_OVERRIDE; void SerializeParam(Channel* chan, intptr_t n, std::string& out) { |