From e87d6b887c04db01c6df9664669d685b43300fce Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Sat, 2 Jul 2016 17:46:56 +0100 Subject: [PATCH] Removed unused code. --- src/blackmisc/predicates.h | 8 -------- 1 file changed, 8 deletions(-) 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 {