]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/global-ctor.cc
* flower/include/std-string.hh:
[lilypond.git] / lily / global-ctor.cc
index 2a81321e0a731a861398307494e26f7b329d8806..dd340e9941fd327642c58e83d80ac71328d05cfb 100644 (file)
 
 #include "std-vector.hh"
 
-static std::vector<Global_ctor> *ctor_global_statics_;
+static vector<Global_ctor> *ctor_global_statics_;
 
 void
 add_constructor (Global_ctor c)
 {
   if (!ctor_global_statics_)
-    ctor_global_statics_ = new std::vector<Global_ctor>;
+    ctor_global_statics_ = new vector<Global_ctor>;
   ctor_global_statics_->push_back (c);
 }