mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 08:34:39 +08:00
macos compilation issue
This commit is contained in:
Vendored
+3
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user