summaryrefslogtreecommitdiff
path: root/include/account.h
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-03-09 13:22:48 +0000
committerSadie Powell <sadie@witchery.services>2024-03-09 22:22:56 +0000
commit39d288f99f878fcaa0f43d659815686fbee667f5 (patch)
treed2af6fa9ef42d9887965886acdba9fd13a7e074a /include/account.h
parent9ead3f15c3256786d3c2b485a786ad32faa0a438 (diff)
Rename hash_map to unordered_map to match the underlying container.
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 9a59cb913..714369152 100644
--- a/include/account.h
+++ b/include/account.h
@@ -17,8 +17,8 @@
#include "memo.h"
#include "base.h"
-typedef Anope::hash_map<NickAlias *> nickalias_map;
-typedef Anope::hash_map<NickCore *> nickcore_map;
+typedef Anope::unordered_map<NickAlias *> nickalias_map;
+typedef Anope::unordered_map<NickCore *> nickcore_map;
typedef std::unordered_map<uint64_t, NickCore *> nickcoreid_map;
extern CoreExport Serialize::Checker<nickalias_map> NickAliasList;