From owner-svn-ports-all@freebsd.org Wed Feb 1 05:28:28 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BDBFCCD96E; Wed, 1 Feb 2017 05:28:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C5F8F150E; Wed, 1 Feb 2017 05:28:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v115SQHL088567; Wed, 1 Feb 2017 05:28:26 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v115SQYf088566; Wed, 1 Feb 2017 05:28:26 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201702010528.v115SQYf088566@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 1 Feb 2017 05:28:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432983 - head/math/newmat/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2017 05:28:28 -0000 Author: jbeich Date: Wed Feb 1 05:28:26 2017 New Revision: 432983 URL: https://svnweb.freebsd.org/changeset/ports/432983 Log: math/newmat: unbreak with clang 4.0 newmat6.cpp:431:13: error: ordered comparison between pointer and zero ('int *' and 'int') if (indx > 0) { delete [] indx; indx = 0; } ~~~~ ^ ~ Reported by: antoine (via exp-run) Added: head/math/newmat/files/patch-newmat6.cpp (contents, props changed) Added: head/math/newmat/files/patch-newmat6.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/newmat/files/patch-newmat6.cpp Wed Feb 1 05:28:26 2017 (r432983) @@ -0,0 +1,11 @@ +--- newmat6.cpp.orig 2006-09-09 12:51:25 UTC ++++ newmat6.cpp +@@ -428,7 +428,7 @@ void CroutMatrix::operator=(const CroutM + { + if (&gm == this) { REPORT tag_val = -1; return; } + REPORT +- if (indx > 0) { delete [] indx; indx = 0; } ++ if (indx) { delete [] indx; indx = 0; } + ((CroutMatrix&)gm).get_aux(*this); + Eq(gm); + }