summaryrefslogtreecommitdiff
path: root/modules/protocol/bahamut.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2017-10-08 12:46:05 -0400
committerAdam <Adam@anope.org>2017-10-08 12:46:05 -0400
commit50f7429fda7cb3ffd8c34abb0a13f3dcc929f2ed (patch)
treee8e65cb6e1fed5aebf0b252954e9f40747ac7f4a /modules/protocol/bahamut.cpp
parent1e52b087139ceb33b114a7fa20a2c6d3d453d371 (diff)
Fix some compiler warnings
Diffstat (limited to 'modules/protocol/bahamut.cpp')
-rw-r--r--modules/protocol/bahamut.cpp27
1 files changed, 14 insertions, 13 deletions
diff --git a/modules/protocol/bahamut.cpp b/modules/protocol/bahamut.cpp
index fa41ebc39..211570ccb 100644
--- a/modules/protocol/bahamut.cpp
+++ b/modules/protocol/bahamut.cpp
@@ -576,23 +576,11 @@ class ProtoBahamut : public Module
, message_sjoin(this)
, message_topic(this)
- , sender_akill(this)
- , sender_akill_del(this)
- , sender_channel(this)
, sender_global_notice(this)
, sender_global_privmsg(this)
, sender_invite(this)
- , sender_join(this)
, sender_kick(this)
- , sender_kill(this)
- , sender_login(this)
- , sender_logout(this)
- , sender_mode_channel(this)
- , sender_mode_user(this)
, sender_nickchange(this)
- , sender_nickintroduction(this)
- , sender_noop(this)
- , sender_topic(this)
, sender_notice(this)
, sender_part(this)
, sender_ping(this)
@@ -600,16 +588,29 @@ class ProtoBahamut : public Module
, sender_privmsg(this)
, sender_quit(this)
, sender_server(this)
+ , sender_squit(this)
+
+ , sender_akill(this)
+ , sender_akill_del(this)
+ , sender_channel(this)
+ , sender_join(this)
+ , sender_kill(this)
+ , sender_login(this)
+ , sender_logout(this)
+ , sender_mode_channel(this)
+ , sender_mode_user(this)
+ , sender_nickintroduction(this)
+ , sender_noop(this)
, sender_sgline(this)
, sender_sgline_del(this)
, sender_sqline(this)
, sender_sqline_del(this)
, sender_szline(this)
, sender_szline_del(this)
- , sender_squit(this)
, sender_svshold(this)
, sender_svsholddel(this)
, sender_svsnick(this)
+ , sender_topic(this)
, sender_wallops(this)
{
IRCD = &ircd_proto;