mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 16:40:39 +08:00
node tests pass
This commit is contained in:
Vendored
+1
-1
@@ -47,7 +47,7 @@ template <class T> T phmap_max(T a, T b) { return a >= b ? a : b; }
|
||||
template <class T>
|
||||
struct Hash
|
||||
{
|
||||
inline size_t operator()(const T& __v) noexcept
|
||||
inline size_t operator()(const T& __v) const
|
||||
{
|
||||
return PHMAP_HASH_CLASS<T>()(__v);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user