]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/ligature-engraver.hh
Issue 4550 (2/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / include / ligature-engraver.hh
index 6f53331a4e5493627debd1ebea1bc48952f28726..0af8d1466abc7f4be040779d638be491cb65143c 100644 (file)
@@ -36,7 +36,7 @@ protected:
   void process_music ();
   virtual Spanner *create_ligature_spanner () = 0;
   virtual void typeset_ligature (Spanner *ligature,
-                                 vector<Grob_info> const &primitives) = 0;
+                                 std::vector<Grob_info> const &primitives) = 0;
   virtual Spanner *current_ligature ();
   SCM brew_ligature_primitive_proc;
 
@@ -48,10 +48,10 @@ private:
   Drul_array<Stream_event *> events_drul_;
 
   Spanner *ligature_;
-  vector<Grob_info> primitives_;
+  std::vector<Grob_info> primitives_;
 
   Spanner *finished_ligature_;
-  vector<Grob_info> finished_primitives_;
+  std::vector<Grob_info> finished_primitives_;
 
   Stream_event *prev_start_event_;