From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 573513858434; Sun, 7 Jan 2024 01:01:02 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 573513858434 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1704589262; bh=9sWURvC/RMc2PguqSngVnoe45hr1gLFANxm2XJqMr5E=; h=From:To:Subject:Date:In-Reply-To:References:From; b=M9d7fpH4l3SlCNSqFDBpCb/RwDhr63Fji77NXTZG3y4zrWwv/IHu/XyH0u0CIRgC0 fP9wzE6sOgTEjPMgIt5HE5q5KqbmIGBJs1IqJNYquioU+QVtLawq2ZVGzFonXJ/Ow0 G33SG+ItNEQpVyDTVCRymC8DZcM0EIVnTwa4ZBiY= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/112997] _Unwind_Exception conflicts with void*. failed to build with clang Date: Sun, 07 Jan 2024 01:00:34 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: WONTFIX X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D112997 --- Comment #9 from GCC Commits --- The master branch has been updated by Jonathan Wakely : https://gcc.gnu.org/g:8c5d00f8291d718ef64c742b9c971e16f75e5074 commit r14-6975-g8c5d00f8291d718ef64c742b9c971e16f75e5074 Author: Jonathan Wakely Date: Wed Dec 13 09:45:44 2023 +0000 libstdc++: Avoid conflicting declaration in eh_call.cc [PR112997] r14-1527-g2415024e0f81f8 changed the parameter of the __cxa_call_terminate definition, but there's also a declaration in unwind-cxx.h which should have been changed too. libstdc++-v3/ChangeLog: PR libstdc++/112997 * libsupc++/unwind-cxx.h (__cxa_call_terminate): Change first parameter to void*.=