mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-30 00:50:38 +08:00
remove #include <functional> from phmap_fwd_decl.h
This commit is contained in:
Vendored
+9
@@ -80,6 +80,15 @@ struct EqualTo
|
||||
}
|
||||
};
|
||||
|
||||
template <class T>
|
||||
struct Less
|
||||
{
|
||||
inline bool operator()(const T& a, const T& b) const
|
||||
{
|
||||
return std::less<T>()(a, b);
|
||||
}
|
||||
};
|
||||
|
||||
namespace type_traits_internal {
|
||||
|
||||
template <typename... Ts>
|
||||
|
||||
Reference in New Issue
Block a user