From: fred Date: Tue, 1 Apr 1997 14:44:09 +0000 (+0000) Subject: lilypond-0.0.46.jcn1 X-Git-Tag: release/1.5.59~6162 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8ea76ac2e651f80b4c07c5b5b7c8e7000d2a7c6c;p=lilypond.git lilypond-0.0.46.jcn1 --- diff --git a/flower/include/interval.hh b/flower/include/interval.hh index aae16381db..57f6a5607a 100644 --- a/flower/include/interval.hh +++ b/flower/include/interval.hh @@ -55,7 +55,7 @@ struct Interval_t { T length() const; void set_empty() ; - bool empty() const { return left > right; } + bool empty_b() const { return left > right; } Interval_t() { set_empty(); } @@ -69,7 +69,7 @@ struct Interval_t { return *this; } String str() const; - bool elt_q(T r); + bool elt_b(T r); };