]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/global-ctor.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / global-ctor.cc
index 5f2a76797377090e9df8d59fa506cf61042a2ae0..c5845be33ec009e8d84640c5c00002832aca9053 100644 (file)
@@ -1,12 +1,13 @@
-/*   
-  global-ctor.cc --  implement global constructors
-  
+/*
+  global-ctor.cc -- implement global constructors
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 1999--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
+
 #include "global-ctor.hh"
+
 #include "array.hh"
 
 static Array<Global_ctor> *ctor_global_statics_;
@@ -22,6 +23,6 @@ add_constructor (Global_ctor c)
 void
 call_constructors ()
 {
-  for (int i=0; i < ctor_global_statics_->size (); i++)
+  for (int i = 0; i < ctor_global_statics_->size (); i++)
     (ctor_global_statics_->elem (i)) ();
 }