aboutsummaryrefslogtreecommitdiff
path: root/devel/tinyq
diff options
context:
space:
mode:
authorMichael Nottebrock <lofi@FreeBSD.org>2006-12-21 19:53:59 +0000
committerMichael Nottebrock <lofi@FreeBSD.org>2006-12-21 19:53:59 +0000
commit912e8e6b724148fdf1f5b9f5ebdd13bedec9dc8f (patch)
tree4322d47c32a01a4c9a13902645dd26da1dc0e55c /devel/tinyq
parent284465970ec0f7a35c444820612e8b9f3d2c259e (diff)
downloadports-912e8e6b724148fdf1f5b9f5ebdd13bedec9dc8f.tar.gz
ports-912e8e6b724148fdf1f5b9f5ebdd13bedec9dc8f.zip
Notes
Diffstat (limited to 'devel/tinyq')
-rw-r--r--devel/tinyq/files/patch-include-qvaluestack.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/tinyq/files/patch-include-qvaluestack.h b/devel/tinyq/files/patch-include-qvaluestack.h
new file mode 100644
index 000000000000..67714e8e05e1
--- /dev/null
+++ b/devel/tinyq/files/patch-include-qvaluestack.h
@@ -0,0 +1,11 @@
+--- include/qvaluestack.h.orig Thu Dec 21 20:51:31 2006
++++ include/qvaluestack.h Thu Dec 21 20:52:42 2006
+@@ -55,7 +55,7 @@
+ {
+ T elem( this->last() );
+ if ( !this->isEmpty() )
+- remove( this->fromLast() );
++ this->remove( this->fromLast() );
+ return elem;
+ }
+ T& top() { return this->last(); }