]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/real.hh
* flower
[lilypond.git] / flower / include / real.hh
index ce7a0e0a857f54ab561e799576bbe9ca4938c008..43a35179a655d9f117f28ba822263af1912dc6ff 100644 (file)
@@ -6,11 +6,9 @@
   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-
 #ifndef REAL_HH
 #define REAL_HH
 
-
 #include <climits>
 
 typedef double Real;
@@ -38,16 +36,15 @@ template<class T> inline T sqr (T x)
   return x*x;
 }
 
-
 template<class T> inline T min (T x, T y)
 {
   return x <? y;
 }
 
 inline Real
-distance (Real x,Real y)
+distance (Real x, Real y)
 {
-    return abs (x-y);
+  return abs (x - y);
 }
 
 #endif