]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/killing-cons.tcc
* lily/include/midi-item.hh (class Midi_track): idem.
[lilypond.git] / flower / include / killing-cons.tcc
index 556d56deeda01fc1ff043833044ac2dc0b49ad5f..60b6d68074061f68ce965a9f223c2b2a1225aa88 100644 (file)
@@ -1,11 +1,10 @@
-/*   
+/*
   killing-cons.tcc -- declare Killing_cons
-  
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1999--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 1999--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
 #ifndef KILLING_CONS_TCC
 #define KILLING_CONS_TCC
@@ -19,24 +18,24 @@ Killing_cons<T>::~Killing_cons ()
 }
 
 template<class T>
-void 
-copy_killing_cons_list (Cons_list<T> &dest, Cons<T> *src) 
+void
+copy_killing_cons_list (Cons_list<T> &dest, Cons<T> *src)
 {
-  for (; src; src  = src->next_)
+  for (; src; src = src->next_)
     {
       T *t = new T (*src->car_);
-      dest.append ( new Killing_cons<T> (t, 0));
+      dest.append (new Killing_cons<T> (t, 0));
     }
 }
 
 template<class T>
 void
-clone_killing_cons_list (Cons_list<T> & dest, Cons<T> *src)
+clone_killing_cons_list (Cons_list<T> &dest, Cons<T> *src)
 {
-  for (; src; src  = src->next_)
+  for (; src; src = src->next_)
     {
       T *t = src->car_->clone ();
-      dest.append (new Killing_cons<T> (t, 0));      
+      dest.append (new Killing_cons<T> (t, 0));
     }
 }