From: Joe Neeman Date: Sun, 14 Jun 2009 14:07:24 +0000 (+0300) Subject: Fix a thinko that broke the contract of STL sort. X-Git-Tag: release/2.13.4-1~301^2~14 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=74c158521769f514c8875b1c636d493cd920017f;p=lilypond.git Fix a thinko that broke the contract of STL sort. --- diff --git a/flower/include/interval.hh b/flower/include/interval.hh index 27e221af8c..edb76deb1a 100644 --- a/flower/include/interval.hh +++ b/flower/include/interval.hh @@ -121,7 +121,7 @@ struct Interval_t : public Drul_array static bool left_less (Interval_t const &a, Interval_t const &b) { - return a[LEFT] < b[RIGHT]; + return a[LEFT] < b[LEFT]; } };