Removing std::binary_function usage (#561)

Deprecated in C++11, removed in C++17
This commit is contained in:
Anis Ladram 2018-10-02 03:49:17 -04:00 committed by William Woodall
parent 6ff3ff43fe
commit eb439ddc73

View file

@ -262,7 +262,7 @@ private:
std::hash<uint64_t>, std::equal_to<uint64_t>,
RebindAlloc<std::pair<const uint64_t, SubscriptionBase::WeakPtr>>>;
struct strcmp_wrapper : public std::binary_function<const char *, const char *, bool>
struct strcmp_wrapper
{
bool
operator()(const char * lhs, const char * rhs) const