- fix build on clang

PR:	171298
Submitted by:	pawel.worach@gmail.com
This commit is contained in:
Jason Helfman 2012-09-06 06:06:51 +00:00
parent 215eb3829e
commit 6efa790b09
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=303743

View file

@ -1,6 +1,12 @@
--- 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 @@
--- include/qvaluestack.h.orig 2002-10-17 15:08:58.000000000 +0000
+++ include/qvaluestack.h 2012-09-03 22:17:15.000000000 +0000
@@ -50,12 +50,12 @@
public:
QValueStack() {}
~QValueStack() {}
- void push( const T& d ) { append(d); }
+ void push( const T& d ) { this->append(d); }
T pop()
{
T elem( this->last() );
if ( !this->isEmpty() )