macos compilation issue

This commit is contained in:
greg
2019-03-28 21:02:07 -04:00
parent b14455df80
commit 9b2ec72577
2 changed files with 15 additions and 9 deletions
+3 -2
View File
@@ -44,8 +44,9 @@ namespace phmap
template <class T> T phmap_min(T a, T b) { return a < b ? a : b; }
template <class T> T phmap_max(T a, T b) { return a >= b ? a : b; }
template <class T>
using Allocator = typename std::allocator<T>;
template <class T> using Allocator = typename std::allocator<T>;
template<class T1, class T2> using Pair = typename std::pair<T1, T2>;
template <class T>
struct EqualTo