]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/tuplet-number.cc
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / lily / tuplet-number.cc
index df970939886ff281cdec753b7eef19fb00234173..99e61b2ff55162d549bbf72b084029e071611df8 100644 (file)
@@ -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;
     }