]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/interval.cc
More collision tests.
[lilypond.git] / flower / interval.cc
index e3873147fc3b2451dc61fcc7056682e50322a097..965888ade5ceab83540acdb06f8406ff00b9fb34 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the Flower Library
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
@@ -20,7 +20,7 @@ Interval_t<Real>::infinity ()
 String
 Interval_t<Real>::T_to_string (Real r)
 {
-  return to_string (r);
+  return ::to_string (r);
 }
 
 
@@ -33,9 +33,10 @@ Interval_t<int>::infinity ()
 String
 Interval_t<int>::T_to_string (int i)
 {
-  return to_string (i);
+  return ::to_string (i);
 }
 
 template INTERVAL__INSTANTIATE (int);
 template INTERVAL__INSTANTIATE (Real);
 
+