Date: Sat, 28 Sep 2024 09:48:15 +0000 From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 281358] graphics/vigra: fix build with clang 19 Message-ID: <bug-281358-7788-iWluRwOxUV@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-281358-7788@https.bugs.freebsd.org/bugzilla/> References: <bug-281358-7788@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D281358 --- Comment #2 from commit-hook@FreeBSD.org --- A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=3D5a269b5cd4965710fa4e02fdb1cc2ff= e6def6921 commit 5a269b5cd4965710fa4e02fdb1cc2ffe6def6921 Author: Dimitry Andric <dim@FreeBSD.org> AuthorDate: 2024-09-08 08:57:41 +0000 Commit: Dimitry Andric <dim@FreeBSD.org> CommitDate: 2024-09-28 09:42:56 +0000 graphics/vigra: fix build with clang 19 Clang 19 is more strict about manipulating `this` in C++, which results in an error compiling graphics/vigra: =20=20=20=20=20=20=20 /wrkdirs/usr/ports/graphics/vigra/work/vigra-8acd73a/include/vigra/multi_it= erator_coupled.hxx:493:9: error: expression is not assignable 493 | --this; | ^ ~~~~ Here, the intent is to call the prefix operator-- on the object, which should be spelled either "--*this" or "operator--()". PR: 281358 Approved by: maintainer timeout (2 weeks) MFH: 2024Q3 .../patch-include_vigra_multi__iterator__coupled.hxx (new) | 11 +++++++= ++++ 1 file changed, 11 insertions(+) --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-281358-7788-iWluRwOxUV>