From: fred Date: Tue, 3 Dec 1996 22:05:45 +0000 (+0000) Subject: flower-1.0.11 X-Git-Tag: release/1.5.59~6686 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=88eebb027a8bc5f29d2cf3e5cab8ec6d566d45c1;p=lilypond.git flower-1.0.11 --- diff --git a/flower/Makefile b/flower/Makefile index b39b1f213d..46fb7b5ab4 100644 --- a/flower/Makefile +++ b/flower/Makefile @@ -1,11 +1,11 @@ MAJVER=1 MINVER=0 -PATCHLEVEL=10 +PATCHLEVEL=11 PACKAGENAME=flower VERSION=$(MAJVER).$(MINVER).$(PATCHLEVEL) DNAME=$(PACKAGENAME)-$(VERSION) -DEFINES=-DNDEBUG -DNPRINT -O2 +DEFINES=-DNDEBUG -O2 #DEFINES=-g CXXFLAGS+=$(DEFINES) -Wall -W -pedantic diff --git a/flower/plist.hh b/flower/plist.hh index ea2c0ecdae..704a883f83 100644 --- a/flower/plist.hh +++ b/flower/plist.hh @@ -16,8 +16,8 @@ class PointerList : public List public: PCursor top() { return PCursor (List::top()); } PCursor bottom() { return PCursor (List::bottom()); } + PCursor find(T) const; void concatenate(PointerList const &s) { List::concatenate(s); } -// PointerList( const T& thing ) : List( thing ) { } PointerList() {} };