diff options
| author | 2005-05-15 18:35:39 +0000 | |
|---|---|---|
| committer | 2005-05-15 18:35:39 +0000 | |
| commit | 636f32fcd0ac8bdd5bb70e04b6205d9980ef344e (patch) | |
| tree | 3bf89a0741d5124cfa2120f1bae357913df2d842 /src/helperfuncs.cpp | |
| parent | Made modules use irc::string where they were using strcasecmp() (diff) | |
Moved StrHashComp and InAddr_HashComp into the irc:: namespace
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1398 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/helperfuncs.cpp')
| -rw-r--r-- | src/helperfuncs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 20b924013..5649b6ca1 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -78,8 +78,8 @@ extern std::vector<userrec*> all_opers; extern ClassVector Classes; -typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, StrHashComp> user_hash; -typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, StrHashComp> chan_hash; +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 std::deque<command_t> command_table; extern user_hash clientlist; |
