summaryrefslogtreecommitdiff
path: root/src/channels.cpp
diff options
context:
space:
mode:
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-08 22:33:46 +0000
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-08 22:33:46 +0000
commit77123f4dec9f29105f6c0ceea0262cfe8e9eaa1a (patch)
treeaf57fe94416547ca184a5c882ec9cd0e4ed9867a /src/channels.cpp
parentbf388b2bf1c951d999ca5845b150370eb62b8f3a (diff)
Remove references to inspircd_io from these, stop configure making all the modules depend on it too. And remove some more un-needed includes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3853 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/channels.cpp')
-rw-r--r--src/channels.cpp13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index 4eba586ab..c63ddbb28 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -18,22 +18,17 @@ using namespace std;
#include "configreader.h"
#include "inspircd.h"
-#include "inspircd_io.h"
#include <unistd.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/utsname.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 "hash_map.h"
#include "users.h"
#include "ctables.h"
#include "globals.h"
@@ -48,12 +43,6 @@ using namespace std;
#include "helperfuncs.h"
#include "typedefs.h"
-#ifdef GCC3
-#define nspace __gnu_cxx
-#else
-#define nspace std
-#endif
-
extern ServerConfig* Config;
extern int MODCOUNT;