]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/interval.cc
* The grand 2005-2006 replace.
[lilypond.git] / flower / interval.cc
index 6a7628702b2082ac7e783f1eb8aa5723960e4b9e..aaa552353d3d6dc1bc01b094bfff4c7886756b04 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the Flower Library
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "interval.hh"
@@ -12,7 +12,7 @@
 
 template<>
 Real
-Interval_t<Real>::infinity () 
+Interval_t<Real>::infinity ()
 {
   return HUGE_VAL;
 }
@@ -26,12 +26,11 @@ Interval_t<Real>::T_to_string (Real r)
 
 template<>
 int
-Interval_t<int>::infinity () 
+Interval_t<int>::infinity ()
 {
   return INT_MAX;
 }
 
-
 template<>
 String
 Interval_t<int>::T_to_string (int i)
@@ -42,4 +41,3 @@ Interval_t<int>::T_to_string (int i)
 template INTERVAL__INSTANTIATE (int);
 template INTERVAL__INSTANTIATE (Real);
 
-