diff options
author | Sadie Powell <sadie@witchery.services> | 2024-03-09 13:22:48 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-09 22:22:56 +0000 |
commit | 39d288f99f878fcaa0f43d659815686fbee667f5 (patch) | |
tree | d2af6fa9ef42d9887965886acdba9fd13a7e074a /include/users.h | |
parent | 9ead3f15c3256786d3c2b485a786ad32faa0a438 (diff) |
Rename hash_map to unordered_map to match the underlying container.
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/users.h b/include/users.h index e84d5336f..85435dd0f 100644 --- a/include/users.h +++ b/include/users.h @@ -19,7 +19,7 @@ #include "account.h" #include "sockets.h" -typedef Anope::hash_map<User *> user_map; +typedef Anope::unordered_map<User *> user_map; extern CoreExport user_map UserListByNick, UserListByUID; |