]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/bezier-bow.cc
Fix 1477: Add (ly:expect-warning msg args) to suppress expected warnings
[lilypond.git] / lily / bezier-bow.cc
index 587d3d65db0cedc3ac6f57927ff14199e1373118..6103770b84d9c611a89a1c1386236027c1234f55 100644 (file)
@@ -23,7 +23,7 @@
 static Real
 F0_1 (Real x)
 {
-  return 2 / M_PI *atan (M_PI *x / 2);
+  return 2 / M_PI * atan (M_PI * x / 2);
 }
 
 Real
@@ -101,7 +101,7 @@ slur_height (Real width, Real h_inf, Real r_0)
 
 void
 get_slur_indent_height (Real *indent, Real *height,
-                       Real width, Real h_inf, Real r_0)
+                        Real width, Real h_inf, Real r_0)
 {
   Real max_fraction = 1.0 / 3.1;
   *height = slur_height (width, h_inf, r_0);
@@ -117,7 +117,7 @@ slur_shape (Real width, Real h_inf, Real r_0)
   Real height;
 
   get_slur_indent_height (&indent, &height,
-                         width, h_inf, r_0);
+                          width, h_inf, r_0);
 
   Bezier curve;
   curve.control_[0] = Offset (0, 0);