X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ftuplet-number.cc;h=99e61b2ff55162d549bbf72b084029e071611df8;hb=5d84bfad4626892bcffd05adcced53c8a2329047;hp=df970939886ff281cdec753b7eef19fb00234173;hpb=f127e14af04f474d20406ca0e0f76f05061ee103;p=lilypond.git diff --git a/lily/tuplet-number.cc b/lily/tuplet-number.cc index df97093988..99e61b2ff5 100644 --- a/lily/tuplet-number.cc +++ b/lily/tuplet-number.cc @@ -34,8 +34,6 @@ #include "stem.hh" #include "warn.hh" -using std::vector; - /* The reference stem is used to determine on which side of the beam to place the tuplet number when it is positioned independently of a bracket. (The number @@ -338,7 +336,7 @@ count_beams_not_touching_stem (SCM beaming) for (SCM s = scm_car (beaming); scm_is_pair (s); s = scm_cdr (s)) { - if (scm_is_true (scm_c_memq (scm_car (s), scm_cdr (beaming)))) + if (scm_is_true (ly_memv (scm_car (s), scm_cdr (beaming)))) ++count; }