]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/bezier.cc
coverage fixes.
[lilypond.git] / lily / bezier.cc
index 77f3949992cbf1fb6eaa380245d190aa3da3ec47..3da46abe0f31ba67830cd5e6c99a2b2ecf60aa62 100644 (file)
@@ -14,21 +14,6 @@ Real binomial_coefficient_3[] = {
   1, 3, 3, 1
 };
 
-Real
-binomial_coefficient (Real over, int under)
-{
-  Real x = 1.0;
-
-  while (under)
-    {
-      x *= over / Real (under);
-
-      over -= 1.0;
-      under--;
-    }
-  return x;
-}
-
 void
 scale (vector<Offset> *array, Real x, Real y)
 {