]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/polynomial.cc
Nitpick run.
[lilypond.git] / flower / polynomial.cc
index 7b60880e7d901d40f4779fb4c47f9cc2fda72062..906c948c9f905c0c725a0e9a81e45d4bb7f6cf46 100644 (file)
@@ -48,9 +48,7 @@ void
 Polynomial::differentiate ()
 {
   for (int i = 1; i <= degree (); i++)
-    {
-      coefs_[i - 1] = coefs_[i] * i;
-    }
+    coefs_[i - 1] = coefs_[i] * i;
   coefs_.pop ();
 }