mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 08:34:39 +08:00
Update phmap_fwd_decl.h
This commit is contained in:
Vendored
+2
-2
@@ -24,10 +24,10 @@ namespace phmap {
|
||||
template <class T, class E = void>
|
||||
struct HashEq
|
||||
{
|
||||
#ifdef PHMAP_USE_ABSL_HASHEQ
|
||||
#if defined(PHMAP_USE_ABSL_HASHEQ)
|
||||
using Hash = absl::Hash<T>;
|
||||
using Eq = absl::EqualTo<T>;
|
||||
#elif PHMAP_USE_ABSL_HASH
|
||||
#elif defined(PHMAP_USE_ABSL_HASH)
|
||||
using Hash = absl::Hash<T>;
|
||||
using Eq = phmap::EqualTo<T>;
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user