Date: Sun, 08 Sep 2024 08:57:13 +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@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D281358 Bug ID: 281358 Summary: graphics/vigra: fix build with clang 19 Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: ports-bugs@FreeBSD.org Reporter: dim@FreeBSD.org Clang 19 is more strict about manipulating `this` in C++, which results in an error compiling graphics/vigra: =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--()". --=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>