]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/global-ctor.cc
Run `make grand-replace'.
[lilypond.git] / lily / global-ctor.cc
index e0bd7492966b4049c4eb0c1527a38769bd4ea474..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);
 }
 
@@ -24,5 +24,5 @@ void
 call_constructors ()
 {
   for (vsize i = 0; i < ctor_global_statics_->size (); i++)
-    (ctor_global_statics_->elem (i)) ();
+    (ctor_global_statics_->at (i)) ();
 }