freebsd-ports/math/kaskade/files/patch-sources_stack.h
Thierry Thomas 777026ca2d Unbreak with gcc 3.4.
Approved by:	portmgr (marcus)
2005-08-17 05:22:58 +00:00

11 lines
332 B
C

--- ./sources/stack.h.orig Fri Dec 10 15:20:50 1999
+++ ./sources/stack.h Tue Aug 16 22:01:00 2005
@@ -30,7 +30,7 @@
virtual T Top() const;
- int empty() const { return h < l; }
+ int empty() const { return this->h < this->l; }
virtual void resize(int newTop);
virtual void resize(int newl, int newTop);