]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/global-ctor.cc
* lily/note-column.cc (translate_rests): call flush_extent_cache()
[lilypond.git] / lily / global-ctor.cc
index eecc7ed312187cf53d4503dd0148871ca8271864..26e9f9b2f469e883ad6ea1364d2c8d6824e1c3de 100644 (file)
@@ -3,10 +3,12 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
+
 #include "global-ctor.hh"
+
 #include "array.hh"
 
 static Array<Global_ctor> *ctor_global_statics_;
@@ -22,6 +24,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)) ();
 }