mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-30 00:50:38 +08:00
fix bad return value
This commit is contained in:
Vendored
+1
-1
@@ -59,7 +59,7 @@ template<class T1, class T2> using Pair = typename std::pair<T1, T2>;
|
||||
template <class T>
|
||||
struct EqualTo
|
||||
{
|
||||
inline size_t operator()(const T& a, const T& b) const
|
||||
inline bool operator()(const T& a, const T& b) const
|
||||
{
|
||||
return std::equal_to<T>()(a, b);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user