diff --git a/src/blackmisc/predicates.h b/src/blackmisc/predicates.h index de62cee04..8bbc6955d 100644 --- a/src/blackmisc/predicates.h +++ b/src/blackmisc/predicates.h @@ -72,14 +72,6 @@ namespace BlackMisc template bool operator()(const T &a, const T &b) const { return head.isStable(a, b) ? head(a, b) : tail(a, b); } }; - //! \private - template struct Equals - { - const T m_value; - template Equals(U &&value, int dummy) : m_value(std::forward(value)) { Q_UNUSED(dummy); } - template bool operator ()(const U &other) const { return other == m_value; } - }; - //! \private struct Matches {