remove deprecated std::binary_function

This commit is contained in:
wmayer
2020-05-11 13:46:37 +02:00
parent 8cd1e1ceba
commit 5ece278c94
13 changed files with 41 additions and 42 deletions

View File

@@ -62,7 +62,7 @@ public:
};
template<class T>
struct TopoDSLess : public std::binary_function<T, T, bool> {
struct TopoDSLess {
bool operator()(const T& x, const T& y) const {
return x.HashCode(INT_MAX-1) < y.HashCode(INT_MAX-1);
}