Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Sep 2012 06:06:51 +0000 (UTC)
From:      Jason Helfman <jgh@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r303743 - head/devel/tinyq/files
Message-ID:  <201209060606.q8666pAf070877@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jgh
Date: Thu Sep  6 06:06:51 2012
New Revision: 303743
URL: http://svn.freebsd.org/changeset/ports/303743

Log:
  - fix build on clang
  
  PR:	171298
  Submitted by:	pawel.worach@gmail.com

Modified:
  head/devel/tinyq/files/patch-include-qvaluestack.h

Modified: head/devel/tinyq/files/patch-include-qvaluestack.h
==============================================================================
--- head/devel/tinyq/files/patch-include-qvaluestack.h	Thu Sep  6 05:57:58 2012	(r303742)
+++ head/devel/tinyq/files/patch-include-qvaluestack.h	Thu Sep  6 06:06:51 2012	(r303743)
@@ -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() )



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209060606.q8666pAf070877>