From 1782ce260c5bc214ec0b2e39257ab1371b68ae9c Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 22 Apr 2011 03:11:12 -0400 Subject: [PATCH] Use std::map instead of unordered_map --- include/account.h | 4 ++-- include/channels.h | 2 +- include/regchannel.h | 2 +- 3 files changed, 4 insertions(+), 4 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 > nickalias_map; -typedef unordered_map_namespace::unordered_map > nickcore_map; +typedef Anope::insensitive_map nickalias_map; +typedef Anope::insensitive_map nickcore_map; extern CoreExport nickalias_map NickAliasList; extern CoreExport nickcore_map NickCoreList; 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 > channel_map; +typedef Anope::insensitive_map channel_map; extern CoreExport channel_map ChannelList; struct UserData diff --git a/include/regchannel.h b/include/regchannel.h index 5d366271a..6f9a52fdc 100644 --- a/include/regchannel.h +++ b/include/regchannel.h @@ -9,7 +9,7 @@ #ifndef REGCHANNEL_H #define REGCHANNEL_H -typedef unordered_map_namespace::unordered_map > registered_channel_map; +typedef Anope::insensitive_map registered_channel_map; extern CoreExport registered_channel_map RegisteredChannelList; /** Flags used for the ChannelInfo class