diff options
author | Sadie Powell <sadie@witchery.services> | 2022-03-01 05:09:29 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-03-01 05:09:29 +0000 |
commit | 09c587bed0589bc3678e4fd4b52101cbb28501b1 (patch) | |
tree | 7b97db4d81ac20710a7d083c9a350dea059008c9 /include/account.h | |
parent | a8724b5f03adc05355c52fb7c75c9f1b6136348d (diff) |
Remove TR1 compatibility layer.
This isn't necessary now we use C++17.
Diffstat (limited to 'include/account.h')
-rw-r--r-- | include/account.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/account.h b/include/account.h index a26f1e184..eb1b6a81f 100644 --- a/include/account.h +++ b/include/account.h @@ -19,7 +19,7 @@ typedef Anope::hash_map<NickAlias *> nickalias_map; typedef Anope::hash_map<NickCore *> nickcore_map; -typedef TR1NS::unordered_map<uint64_t, NickCore *> nickcoreid_map; +typedef std::unordered_map<uint64_t, NickCore *> nickcoreid_map; extern CoreExport Serialize::Checker<nickalias_map> NickAliasList; extern CoreExport Serialize::Checker<nickcore_map> NickCoreList; |