remove #include <functional> from phmap_fwd_decl.h

This commit is contained in:
greg
2020-01-03 14:19:55 -05:00
parent c0a33e39cd
commit 942403f0db
3 changed files with 27 additions and 6 deletions
+9
View File
@@ -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>