summaryrefslogtreecommitdiff
path: root/include/account.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-04-22 03:11:12 -0400
committerAdam <Adam@anope.org>2011-05-16 04:01:50 -0400
commit1782ce260c5bc214ec0b2e39257ab1371b68ae9c (patch)
tree84e41b8339a16989cb97f14103306404946f5cc8 /include/account.h
parentb28d3746f500210933a6c4694d3741b2e5249762 (diff)
Use std::map instead of unordered_map
Diffstat (limited to 'include/account.h')
-rw-r--r--include/account.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/account.h b/include/account.h
index 01ec082dd..777efb5d0 100644
--- a/include/account.h
+++ b/include/account.h
@@ -6,8 +6,8 @@
class NickAlias;
class NickCore;
-typedef unordered_map_namespace::unordered_map<Anope::string, NickAlias *, ci::hash, std::equal_to<ci::string> > nickalias_map;
-typedef unordered_map_namespace::unordered_map<Anope::string, NickCore *, ci::hash, std::equal_to<ci::string> > nickcore_map;
+typedef Anope::insensitive_map<NickAlias *> nickalias_map;
+typedef Anope::insensitive_map<NickCore *> nickcore_map;
extern CoreExport nickalias_map NickAliasList;
extern CoreExport nickcore_map NickCoreList;