From 592a156aaa65f5c130911753f7e524aa1e341e44 Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Tue, 2 Oct 2012 03:39:44 +0200 Subject: [PATCH] comparators: fix yet another implicit conversion related bug --- src/utility/comparators.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utility/comparators.h b/src/utility/comparators.h index 5c8fccd7..d1d1eac2 100644 --- a/src/utility/comparators.h +++ b/src/utility/comparators.h @@ -61,7 +61,7 @@ public: template bool operator()(const ExecItem &a, const ExecItem &b) const { - return m_cmp(a.item(), b.item()); + return m_cmp(a.item(), b.item()) < 0; } };