diff options
author | Adam <Adam@anope.org> | 2010-07-29 18:38:56 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-07-29 18:38:56 -0400 |
commit | cc649031792af1e94c7701decd708aba4091d708 (patch) | |
tree | ee936f487cbae10f782bd81a50c058f5d2c36c83 /include/channels.h | |
parent | 04200cc8382519c8ea18d214002bc0f063be7d3c (diff) |
Rewrote the hashing systems to properly handle the new Anope::strings which we have everywhere.
Diffstat (limited to 'include/channels.h')
-rw-r--r-- | include/channels.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/channels.h b/include/channels.h index f2785ff01..56fa7cf46 100644 --- a/include/channels.h +++ b/include/channels.h @@ -9,7 +9,7 @@ #ifndef CHANNELS_H #define CHANNELS_H -typedef unordered_map_namespace::unordered_map<Anope::string, Channel *, hash_compare_ci_string> channel_map; +typedef unordered_map_namespace::unordered_map<Anope::string, Channel *, ci::hash, std::equal_to<ci::string> > channel_map; extern CoreExport channel_map ChannelList; struct UserData |