aboutsummaryrefslogtreecommitdiffstats
path: root/src/commands/cmd_mode.cpp
diff options
context:
space:
mode:
authorGravatar danieldg2009-11-11 00:17:07 +0000
committerGravatar danieldg2009-11-11 00:17:07 +0000
commit19487dbebc520450e457472b97d9e7bcd5160c00 (patch)
tree5ba36439139db77ff11c549228a3dbf69727e9cc /src/commands/cmd_mode.cpp
parentAllow near-empty configuration to work by adding sensible defaults (diff)
downloadinspircd++-19487dbebc520450e457472b97d9e7bcd5160c00.tar.gz
inspircd++-19487dbebc520450e457472b97d9e7bcd5160c00.tar.bz2
inspircd++-19487dbebc520450e457472b97d9e7bcd5160c00.zip
Allow static build of inspircd without module support
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12083 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_mode.cpp')
-rw-r--r--src/commands/cmd_mode.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/commands/cmd_mode.cpp b/src/commands/cmd_mode.cpp
index 3cfc58263..5bc55e895 100644
--- a/src/commands/cmd_mode.cpp
+++ b/src/commands/cmd_mode.cpp
@@ -13,13 +13,6 @@
#include "inspircd.h"
-#ifndef __CMD_ADMIN_H__
-#define __CMD_ADMIN_H__
-
-#include "users.h"
-#include "channels.h"
-#include "ctables.h"
-
/** Handle /MODE. These command handlers can be reloaded by the core,
* and handle basic RFC1459 commands. Commands within modules work
* the same way, however, they can be fully unloaded, where these
@@ -40,8 +33,6 @@ class CommandMode : public Command
CmdResult Handle(const std::vector<std::string>& parameters, User *user);
};
-#endif
-
/** Handle /MODE
*/