]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/text-db.hh
release: 1.0.1
[lilypond.git] / flower / include / text-db.hh
index ab3e9c82b515ef24250ce250a73c2278fb83dd87..6e90e38c47ff3b3fb5186a96ef45a406ad3886bb 100644 (file)
@@ -40,7 +40,7 @@ public:
 
     Text_db (String fn):Data_file (fn) { }
     Data_file::error;
-    bool eof();
+    bool eof_b ();
 
     /// get next line.
     Text_record operator++(int) {
@@ -48,7 +48,7 @@ public:
     }
     /// are we done yet?
     operator bool() {
-       return !eof();
+       return !eof_b ();
     }
 };