]> git.donarmstrong.com Git - lilypond.git/commitdiff
flower-1.0.11
authorfred <fred>
Tue, 3 Dec 1996 22:05:45 +0000 (22:05 +0000)
committerfred <fred>
Tue, 3 Dec 1996 22:05:45 +0000 (22:05 +0000)
flower/Makefile
flower/plist.hh

index b39b1f213d7685532f2c52bcc85f7350f428c3e1..46fb7b5ab41f0a8805218a92dccc198bff680eba 100644 (file)
@@ -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
 
index ea2c0ecdae3ea9137c5ebb4c7a77911094b10c1e..704a883f83f488b1397d78c0acd65292109dbef6 100644 (file)
@@ -16,8 +16,8 @@ class PointerList : public List<void *>
  public:
     PCursor<T> top() {  return PCursor<T> (List<void*>::top()); }
     PCursor<T> bottom() { return PCursor<T> (List<void*>::bottom()); }
+    PCursor<T> find(T) const;
     void concatenate(PointerList<T> const &s) { List<void*>::concatenate(s); }
-//    PointerList( const T& thing ) : List<void*>( thing ) { }
     PointerList() {}
 };