From c12086e5c8cfd3256914d12c715447d4b6716eff Mon Sep 17 00:00:00 2001 From: Dan Eble Date: Mon, 18 May 2015 08:53:15 -0400 Subject: [PATCH] Part_combine_iterator: remove unused parameter Somehow I overlooked the warning in the patch for Issue 4385. --- lily/part-combine-iterator.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lily/part-combine-iterator.cc b/lily/part-combine-iterator.cc index ec612aa8cc..065ee1bce2 100644 --- a/lily/part-combine-iterator.cc +++ b/lily/part-combine-iterator.cc @@ -97,7 +97,7 @@ private: void chords_together (); void solo1 (); void solo2 (); - void apart (bool silent); + void apart (); void unisono (bool silent, int newpart); }; @@ -272,7 +272,7 @@ Part_combine_iterator::chords_together () } void -Part_combine_iterator::apart (bool silent) +Part_combine_iterator::apart () { if (state_ == APART) return; @@ -367,7 +367,7 @@ Part_combine_iterator::process (Moment m) else if (scm_is_eq (tag, ly_symbol2scm ("apart")) || scm_is_eq (tag, ly_symbol2scm ("apart-silence")) || scm_is_eq (tag, ly_symbol2scm ("apart-spanner"))) - apart (scm_is_eq (tag, ly_symbol2scm ("apart-silence"))); + apart (); else if (scm_is_eq (tag, ly_symbol2scm ("unisono"))) { // Continue to use the most recently used part because we might have -- 2.39.2