diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-06-14 15:30:14 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-06-14 15:30:14 +0200 |
commit | 82435b6fa8805baa65e04a582f3e4a2c84237f73 (patch) | |
tree | aae1a18b9eda7a46979b9d9b625b29461ceb12c9 /src/modes | |
parent | b9e323b2c3c7f44422cb762c0412665c4fd52cdc (diff) |
Kill needless #includes in source files
Diffstat (limited to 'src/modes')
-rw-r--r-- | src/modes/cmode_k.cpp | 3 | ||||
-rw-r--r-- | src/modes/cmode_l.cpp | 3 | ||||
-rw-r--r-- | src/modes/cmode_o.cpp | 5 | ||||
-rw-r--r-- | src/modes/cmode_v.cpp | 5 | ||||
-rw-r--r-- | src/modes/umode_o.cpp | 3 | ||||
-rw-r--r-- | src/modes/umode_s.cpp | 3 |
6 files changed, 0 insertions, 22 deletions
diff --git a/src/modes/cmode_k.cpp b/src/modes/cmode_k.cpp index e14f93a77..0f8070cb4 100644 --- a/src/modes/cmode_k.cpp +++ b/src/modes/cmode_k.cpp @@ -21,9 +21,6 @@ #include "inspircd.h" -#include "mode.h" -#include "channels.h" -#include "users.h" #include "builtinmodes.h" ModeChannelKey::ModeChannelKey() diff --git a/src/modes/cmode_l.cpp b/src/modes/cmode_l.cpp index 128854b50..9121d64ec 100644 --- a/src/modes/cmode_l.cpp +++ b/src/modes/cmode_l.cpp @@ -20,9 +20,6 @@ #include "inspircd.h" -#include "mode.h" -#include "channels.h" -#include "users.h" #include "builtinmodes.h" ModeChannelLimit::ModeChannelLimit() diff --git a/src/modes/cmode_o.cpp b/src/modes/cmode_o.cpp index 6e96afa67..496a32718 100644 --- a/src/modes/cmode_o.cpp +++ b/src/modes/cmode_o.cpp @@ -21,11 +21,6 @@ #include "inspircd.h" -#include "configreader.h" -#include "mode.h" -#include "channels.h" -#include "users.h" -#include "modules.h" #include "builtinmodes.h" ModeChannelOp::ModeChannelOp() : PrefixMode(NULL, "op", 'o') diff --git a/src/modes/cmode_v.cpp b/src/modes/cmode_v.cpp index c8ce30ab1..d6108a984 100644 --- a/src/modes/cmode_v.cpp +++ b/src/modes/cmode_v.cpp @@ -21,11 +21,6 @@ #include "inspircd.h" -#include "configreader.h" -#include "mode.h" -#include "channels.h" -#include "users.h" -#include "modules.h" #include "builtinmodes.h" ModeChannelVoice::ModeChannelVoice() : PrefixMode(NULL, "voice", 'v') diff --git a/src/modes/umode_o.cpp b/src/modes/umode_o.cpp index affd6b50c..6e9517a4f 100644 --- a/src/modes/umode_o.cpp +++ b/src/modes/umode_o.cpp @@ -19,9 +19,6 @@ #include "inspircd.h" -#include "mode.h" -#include "channels.h" -#include "users.h" #include "builtinmodes.h" ModeUserOperator::ModeUserOperator() : ModeHandler(NULL, "oper", 'o', PARAM_NONE, MODETYPE_USER) diff --git a/src/modes/umode_s.cpp b/src/modes/umode_s.cpp index b355cb824..08ee7f562 100644 --- a/src/modes/umode_s.cpp +++ b/src/modes/umode_s.cpp @@ -20,9 +20,6 @@ #include "inspircd.h" -#include "mode.h" -#include "channels.h" -#include "users.h" #include "builtinmodes.h" ModeUserServerNoticeMask::ModeUserServerNoticeMask() : ModeHandler(NULL, "snomask", 's', PARAM_SETONLY, MODETYPE_USER) |