mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
fix reversed semantics from 86f1b for LaterNoteEndComparator()
This commit is contained in:
parent
ec6dd2dc8b
commit
e510aed38d
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue