diff options
author | Peter Powell <petpow@saberuk.com> | 2013-04-15 16:45:42 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-04-19 01:34:07 +0100 |
commit | 0d3a6719b8d924ea663f95e3e2fb834cbd80c6a5 (patch) | |
tree | d16a152c375232039ce2243145c57d3bb4aed525 /include/dns.h | |
parent | 326852f7dd3fd6989d37ad2991f8a174b3a86b65 (diff) |
Fix building with libc++.
- Purged std::tr1::strlower (was never used).
- Moved std::tr1::insensitive to irc::insensitive.
- Added TR1NS macro to point to the correct C++ TR1 namespace.
Diffstat (limited to 'include/dns.h')
-rw-r--r-- | include/dns.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dns.h b/include/dns.h index d03af8918..120a8f428 100644 --- a/include/dns.h +++ b/include/dns.h @@ -101,7 +101,7 @@ class CoreExport CachedQuery /** DNS cache information. Holds IPs mapped to hostnames, and hostnames mapped to IPs. */ -typedef std::tr1::unordered_map<irc::string, CachedQuery, irc::hash> dnscache; +typedef TR1NS::unordered_map<irc::string, CachedQuery, irc::hash> dnscache; /** * Error types that class Resolver can emit to its error method. |