diff options
author | Adam <Adam@anope.org> | 2011-04-22 03:11:12 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-05-16 04:01:50 -0400 |
commit | 1782ce260c5bc214ec0b2e39257ab1371b68ae9c (patch) | |
tree | 84e41b8339a16989cb97f14103306404946f5cc8 /include/channels.h | |
parent | b28d3746f500210933a6c4694d3741b2e5249762 (diff) |
Use std::map instead of unordered_map
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 8d6cbde5e..d0f899794 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 *, ci::hash, std::equal_to<ci::string> > channel_map; +typedef Anope::insensitive_map<Channel *> channel_map; extern CoreExport channel_map ChannelList; struct UserData |