]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/interval.hh
Add vector constructor with size argument
[lilypond.git] / flower / include / interval.hh
index be7074c242bec76dc2a599e4e9359e6ad9e73556..1ce6ac20988318a40af72585360e26e639f40523 100644 (file)
@@ -110,10 +110,10 @@ struct Interval_t : public Drul_array<T>
   {
     if (!is_empty ())
       {
-       at (LEFT) *= r;
-       at (RIGHT) *= r;
-       if (r < T (0))
-         swap ();
+        at (LEFT) *= r;
+        at (RIGHT) *= r;
+        if (r < T (0))
+          swap ();
       }
     return *this;
   }
@@ -228,7 +228,7 @@ Interval_t<T>::center () const
 }
 
 typedef Interval_t<Real> Interval;
-typedef Interval_t<int> Slice; // weird name
+typedef Interval_t<int> Slice;  // weird name
 
 
 #endif // INTERVAL_HH