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 /modules/m_dns.cpp | |
parent | a8724b5f03adc05355c52fb7c75c9f1b6136348d (diff) |
Remove TR1 compatibility layer.
This isn't necessary now we use C++17.
Diffstat (limited to 'modules/m_dns.cpp')
-rw-r--r-- | modules/m_dns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_dns.cpp b/modules/m_dns.cpp index 3bbb4cfc8..45e2a1530 100644 --- a/modules/m_dns.cpp +++ b/modules/m_dns.cpp @@ -649,7 +649,7 @@ class MyManager : public Manager, public Timer { uint32_t serial; - typedef TR1NS::unordered_map<Question, Query, Question::hash> cache_map; + typedef std::unordered_map<Question, Query, Question::hash> cache_map; cache_map cache; TCPSocket *tcpsock = nullptr; |