]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.46.jcn1
authorfred <fred>
Tue, 1 Apr 1997 14:44:09 +0000 (14:44 +0000)
committerfred <fred>
Tue, 1 Apr 1997 14:44:09 +0000 (14:44 +0000)
flower/include/interval.hh

index aae16381dbef62ed5133b332d49714d8260b5070..57f6a5607a8cd87f5cc8cc242f6d7876e4c7b29c 100644 (file)
@@ -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);
 };