]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/global-ctor.cc
Run `make grand-replace'.
[lilypond.git] / lily / global-ctor.cc
index 2a81321e0a731a861398307494e26f7b329d8806..cfc75fb135e72b7b709b697d9ac791910ed73ab5 100644 (file)
@@ -3,20 +3,20 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1999--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 1999--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "global-ctor.hh"
 
 #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);
 }