mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 08:34:39 +08:00
Fixed compiler error due to missed changes
This commit is contained in:
Vendored
+3
-3
@@ -713,7 +713,7 @@ namespace phmap {
|
||||
template <
|
||||
typename Compare, typename K, typename LK,
|
||||
phmap::enable_if_t<!std::is_same<bool, phmap::invoke_result_t<
|
||||
Compare(const K &, const LK &)>>::value,
|
||||
Compare, const K &, const LK &>>::value,
|
||||
int> = 0>
|
||||
constexpr phmap::weak_ordering do_three_way_comparison(const Compare &compare,
|
||||
const K &x, const LK &y) {
|
||||
@@ -721,8 +721,8 @@ namespace phmap {
|
||||
}
|
||||
template <
|
||||
typename Compare, typename K, typename LK,
|
||||
phmap::enable_if_t<std::is_same<bool, phmap::invoke_result_t<Compare(
|
||||
const K &, const LK &)>>::value,
|
||||
phmap::enable_if_t<std::is_same<bool, phmap::invoke_result_t<Compare,
|
||||
const K &, const LK &>>::value,
|
||||
int> = 0>
|
||||
constexpr phmap::weak_ordering do_three_way_comparison(const Compare &compare,
|
||||
const K &x, const LK &y) {
|
||||
|
||||
Reference in New Issue
Block a user