macos compilation issue

This commit is contained in:
greg
2019-03-28 20:48:24 -04:00
parent a13a8fd765
commit b14455df80
2 changed files with 14 additions and 9 deletions
+3
View File
@@ -44,6 +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>
struct EqualTo
{