summaryrefslogtreecommitdiffstats
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-07-15 17:35:52 +0000
committerGravatar brain2006-07-15 17:35:52 +0000
commitc3912842fd987e6030698191b33c51383f86e915 (patch)
treebb1962fb93566374193282da57b09ecb5e0eb1c7 /src/command_parse.cpp
parentRemoved #ifdef stuff, this should be fine on both 3.3 and 3.4 (diff)
downloadinspircd++-c3912842fd987e6030698191b33c51383f86e915.tar.gz
inspircd++-c3912842fd987e6030698191b33c51383f86e915.tar.bz2
inspircd++-c3912842fd987e6030698191b33c51383f86e915.zip
Removal of all gcc2 checks (there sure was a lot of craq in here)
git-svn-id: http://svn.inspircd.org/repository/branches/1_0_stable@4395 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index e81595ac4..e2e3ba194 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -26,11 +26,7 @@ using namespace std;
#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>
@@ -60,12 +56,7 @@ using namespace std;
#include "command_parse.h"
#include "ctables.h"
-#ifdef GCC3
#define nspace __gnu_cxx
-#else
-#define nspace std
-#endif
-
extern InspIRCd* ServerInstance;