From: fred Date: Fri, 29 Nov 1996 01:26:30 +0000 (+0000) Subject: flower-1.0.10 X-Git-Tag: release/1.5.59~6732 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d57f31ea94f68697e05e793328056563d50abe75;p=lilypond.git flower-1.0.10 --- diff --git a/flower/README b/flower/README index d33c68f3df..6706447fcf 100644 --- a/flower/README +++ b/flower/README @@ -1,5 +1,7 @@ This library contains some general purpose routines which aren't -standardised yet. It was written by: +standardised libraries yet. It may be replaced by STL in time + +It was written by: Han-Wen Nienhuys diff --git a/flower/TODO b/flower/TODO index ef0ab6bac6..9d4ade3bcd 100644 --- a/flower/TODO +++ b/flower/TODO @@ -1,7 +1,5 @@ * PCursor -> Pointer_cursor / PointerCursor ? - * remove List::List(element) - * efficient copy cons for List * extend Interval diff --git a/flower/list.inl b/flower/list.inl index d71e947050..c3ee7e2948 100644 --- a/flower/list.inl +++ b/flower/list.inl @@ -18,13 +18,6 @@ List::set_empty() size_ = 0; } -template -inline -List::List( const T& thing ) -{ - set_empty(); - add( thing, Cursor( *this, bottom_ ) ); -} template inline void List::remove( Cursor me )