diff options
author | Adam <Adam@anope.org> | 2012-10-30 17:09:30 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-30 17:10:31 -0400 |
commit | 36f357c3547dee43f5f694f32878edd7a641c755 (patch) | |
tree | 17daf6db2e3c0b61afe35e9e58f6878700a7bd94 /modules/extra/m_helpchan.cpp | |
parent | b07928eea95dc2c12a2be8adfe804e2019881ee5 (diff) |
Fixed build errors and warnings with -std=c++11
Diffstat (limited to 'modules/extra/m_helpchan.cpp')
-rw-r--r-- | modules/extra/m_helpchan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extra/m_helpchan.cpp b/modules/extra/m_helpchan.cpp index b3971f257..08f90b644 100644 --- a/modules/extra/m_helpchan.cpp +++ b/modules/extra/m_helpchan.cpp @@ -22,7 +22,7 @@ class HelpChannel : public Module OnReload(); } - EventReturn OnChannelModeSet(Channel *c, User *setter, ChannelModeName Name, const Anope::string ¶m) anope_override + EventReturn OnChannelModeSet(Channel *c, MessageSource &setter, ChannelModeName Name, const Anope::string ¶m) anope_override { if (Name == CMODE_OP && c && c->ci && c->name.equals_ci(this->HelpChan)) { |