summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 12:29:20 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-14 12:29:20 +0000
commit7a17273ec03afb3f5caa0e4b6fe3473cf09711d4 (patch)
tree42dd84a5b39e15b679102edb60738c265b4a183f /src/inspircd.cpp
parentccf86b877c9443e0dd547460ca9852ff647ff598 (diff)
Tidied up modules.h added some typedefs to typedefs.h
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2401 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 582eac7b8..5d92f2226 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -86,13 +86,6 @@ SocketEngine* SE = NULL;
extern std::vector<std::string> include_stack;
-/*typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, irc::StrHashComp> user_hash;
-typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, irc::StrHashComp> chan_hash;
-typedef nspace::hash_map<in_addr,string*, nspace::hash<in_addr>, irc::InAddr_HashComp> address_cache;
-typedef nspace::hash_map<std::string, WhoWasUser*, nspace::hash<string>, irc::StrHashComp> whowas_hash;
-typedef std::deque<command_t> command_table;
-typedef std::vector<std::string> servernamelist;*/
-
// This table references users by file descriptor.
// its an array to make it VERY fast, as all lookups are referenced
// by an integer, meaning there is no need for a scan/search operation.