Date: Tue, 7 Jan 2014 22:50:47 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339044 - head/math/abacus/files Message-ID: <201401072250.s07Mol6l036912@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Tue Jan 7 22:50:47 2014 New Revision: 339044 URL: http://svnweb.freebsd.org/changeset/ports/339044 Log: Fix build with gcc47. PR: ports/184571 Submitted by: Christoph Moench-Tegeder Approved by: maintainer Added: head/math/abacus/files/patch-Include-standardpool.inc (contents, props changed) Added: head/math/abacus/files/patch-Include-standardpool.inc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/abacus/files/patch-Include-standardpool.inc Tue Jan 7 22:50:47 2014 (r339044) @@ -0,0 +1,20 @@ +--- Include/abacus/standardpool.inc.orig 2013-11-16 14:06:39.000000000 +0100 ++++ Include/abacus/standardpool.inc 2013-11-16 14:08:30.000000000 +0100 +@@ -129,7 +129,7 @@ + + for(int i = 0; i < ABA_POOL<BaseType, CoType>::number(); i++) + { +- if(softDeleteConVar(pool_[i]) == 0) ++ if(this->softDeleteConVar(pool_[i]) == 0) + { + nDeleted++; + // consider the case that a slot has been deleted although it was empty +@@ -179,7 +179,7 @@ + + while(nRemoved < maxRemove && !candidates.empty()) { + c = candidates.extractMin(); +- hardDeleteConVar(pool_[c]); ++ this->hardDeleteConVar(pool_[c]); + nRemoved++; + } +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401072250.s07Mol6l036912>