fix reversed semantics from 86f1b for LaterNoteEndComparator()

This commit is contained in:
Paul Davis
2013-04-03 14:10:33 -04:00
parent ec6dd2dc8b
commit e510aed38d

View File

@@ -142,7 +142,7 @@ public:
typedef const Note<Time>* value_type;
inline bool operator()(const boost::shared_ptr< const Note<Time> > a,
const boost::shared_ptr< const Note<Time> > b) const {
return musical_time_less_than (a->end_time(), b->end_time());
return musical_time_greater_than (a->end_time(), b->end_time());
}
};