]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/list.icc
release: 0.1.8
[lilypond.git] / flower / include / list.icc
index df0687b7c8b5b28e71cfd47ad96fbbd64b7caf8e..83ec3aa7961f9e8fdac1dae585be4563bf834b48 100644 (file)
@@ -20,11 +20,11 @@ List<T>::set_empty()
 
 template<class T>
 inline void
-List<T>::remove( Cursor<T> me )
+List<T>::remove (Cursor<T> me)
 {
-    if ( me.ok() ){
+    if ( me.ok()){
        Link<T> *lp = me.pointer();     
-       lp->remove(*this);
+       lp->remove (*this);
        delete lp;
         size_--;
     }
@@ -41,7 +41,7 @@ template<class T>
 inline Cursor<T>
 List<T>::top()const
 {
-    return Cursor<T>( *this, top_ );
+    return Cursor<T>( *this, top_);
 }
 
 
@@ -49,7 +49,7 @@ template<class T>
 inline Cursor<T>
 List<T>::bottom()const
 {
-    return Cursor<T>( *this, bottom_ );
+    return Cursor<T>( *this, bottom_);
 }