1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Fix build with GCC 4.1

This commit is contained in:
Michael Nottebrock 2006-12-21 19:53:59 +00:00
parent 284465970e
commit 912e8e6b72
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=180368

View File

@ -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(); }