summaryrefslogtreecommitdiff
path: root/modules/chanserv/cs_seen.cpp
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 /modules/chanserv/cs_seen.cpp
parent9ead3f15c3256786d3c2b485a786ad32faa0a438 (diff)
Rename hash_map to unordered_map to match the underlying container.
Diffstat (limited to 'modules/chanserv/cs_seen.cpp')
-rw-r--r--modules/chanserv/cs_seen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/chanserv/cs_seen.cpp b/modules/chanserv/cs_seen.cpp
index e18434d3e..183cd5e05 100644
--- a/modules/chanserv/cs_seen.cpp
+++ b/modules/chanserv/cs_seen.cpp
@@ -19,7 +19,7 @@ enum TypeInfo
static bool simple;
struct SeenInfo;
static SeenInfo *FindInfo(const Anope::string &nick);
-typedef Anope::hash_map<SeenInfo *> database_map;
+typedef Anope::unordered_map<SeenInfo *> database_map;
database_map database;
struct SeenInfo final