comparators: fix yet another implicit conversion related bug

master
Andrzej Rybczak 14 years ago
parent 1e335fae02
commit 592a156aaa
  1. 2
      src/utility/comparators.h

@ -61,7 +61,7 @@ public:
template <typename ItemT, typename FunT>
bool operator()(const ExecItem<ItemT, FunT> &a, const ExecItem<ItemT, FunT> &b) const {
return m_cmp(a.item(), b.item());
return m_cmp(a.item(), b.item()) < 0;
}
};

Loading…
Cancel
Save