]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/interval.hh
release: 0.0.46.jcn1
[lilypond.git] / 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);
 };