]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script-column.cc
Issue 4568: Check in Texinfo from upstream svn://svn.savannah.gnu.org/texinfo/trunk...
[lilypond.git] / lily / script-column.cc
index 3a288dac72fed44d4d617de36671398b357a2a40..dbe638fcf912ea468ed3c627eb5af427a39f07f3 100644 (file)
@@ -29,6 +29,9 @@
 
 #include <map>
 
+using std::map;
+using std::vector;
+
 typedef map<Grob *, vector <Grob *> > Grob_scripts_map;
 
 void
@@ -72,8 +75,8 @@ Script_column::row_before_line_breaking (SCM smob)
       /*
         Don't want to consider scripts horizontally next to notes.
       */
-      if (Accidental_placement::has_interface (sc)
-          || Arpeggio::has_interface (sc))
+      if (has_interface<Accidental_placement> (sc)
+          || has_interface<Arpeggio> (sc))
         {
           affect_all_grobs.push_back (sc);
         }