summaryrefslogtreecommitdiff
path: root/src/cmd_join.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd_join.cpp')
-rw-r--r--src/cmd_join.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/cmd_join.cpp b/src/cmd_join.cpp
index 159e38390..a71e4d81c 100644
--- a/src/cmd_join.cpp
+++ b/src/cmd_join.cpp
@@ -14,32 +14,10 @@
* ---------------------------------------------------
*/
-using namespace std;
-
-#include "inspircd_config.h"
#include "inspircd.h"
-#include "inspircd_io.h"
-#include <time.h>
-#include <string>
-#ifdef GCC3
-#include <ext/hash_map>
-#else
-#include <hash_map>
-#endif
-#include <map>
-#include <sstream>
-#include <vector>
-#include <deque>
#include "users.h"
-#include "ctables.h"
-#include "globals.h"
-#include "message.h"
#include "commands.h"
-#include "inspstring.h"
#include "helperfuncs.h"
-#include "hashcomp.h"
-#include "typedefs.h"
-#include "command_parse.h"
#include "cmd_join.h"
extern InspIRCd* ServerInstance;
@@ -58,6 +36,3 @@ void cmd_join::Handle (char **parameters, int pcnt, userrec *user)
WriteServ(user->fd,"403 %s %s :Invalid channel name",user->nick, parameters[0]);
}
}
-
-
-