summaryrefslogtreecommitdiff
path: root/include/anope.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/anope.h
parent9ead3f15c3256786d3c2b485a786ad32faa0a438 (diff)
Rename hash_map to unordered_map to match the underlying container.
Diffstat (limited to 'include/anope.h')
-rw-r--r--include/anope.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/anope.h b/include/anope.h
index 000e74d1a..fd3728d84 100644
--- a/include/anope.h
+++ b/include/anope.h
@@ -343,7 +343,7 @@ namespace Anope
using multimap = std::multimap<string, T, ci::less>;
template<typename T>
- using hash_map = std::unordered_map<string, T, hash_ci, compare>;
+ using unordered_map = std::unordered_map<string, T, hash_ci, compare>;
#ifndef REPRODUCIBLE_BUILD
static const char *const compiled = __TIME__ " " __DATE__;