1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 21:23:13 +02:00

Remove TR1 compatibility layer.

This isn't necessary now we use C++17.
This commit is contained in:
Sadie Powell
2022-03-01 05:09:29 +00:00
parent a8724b5f03
commit 09c587bed0
5 changed files with 6 additions and 13 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ struct Exception : Serializable
class SessionService : public Service
{
public:
typedef TR1NS::unordered_map<cidr, Session *, cidr::hash> SessionMap;
typedef std::unordered_map<cidr, Session *, cidr::hash> SessionMap;
typedef std::vector<Exception *> ExceptionVector;
SessionService(Module *m) : Service(m, "SessionService", "session") { }