From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id EF8683985805; Thu, 3 Sep 2020 15:37:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EF8683985805 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1599147459; bh=1ARRsoLgmjY5Q16ZhRmeDkgROKeqONGvTAyEAfmfMck=; h=From:To:Subject:Date:In-Reply-To:References:From; b=T+UFztb8PuWkNozSe2fvolYj40sM23nn3K6oHP8SD4YLXTtQkOB4eOV3gQVNc7W8g w8y7xtb/a+Zpyr7Oy9dany8XGr/cSfgIwbjSBkbh0PJvs5KcWv4wpmKy9S8oIYAD71 UNX8+KdyqwAP07u7e0gUb0JzAE+jCx71twV3HNwk= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/96592] [10/11 Regression] Tuple element w/ member reference to incomplete template type rejected Date: Thu, 03 Sep 2020 15:37:39 +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: 10.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.3 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Sep 2020 15:37:40 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D96592 --- Comment #4 from CVS Commits --- The master branch has been updated by Jonathan Wakely : https://gcc.gnu.org/g:032a4b42cc5f2105f622690ce2552f1c30e1d227 commit r11-2997-g032a4b42cc5f2105f622690ce2552f1c30e1d227 Author: Jonathan Wakely Date: Thu Sep 3 16:26:16 2020 +0100 libstdc++: Add workaround for weird std::tuple error [PR 96592] This "fix" makes no sense, but it avoids an error from G++ about std::is_constructible being incomplete. The real problem is elsewhere, but this "fixes" the regression for now. libstdc++-v3/ChangeLog: PR libstdc++/96592 * include/std/tuple (_TupleConstraints): Use alternative is_constructible instead of std::is_constructible. * testsuite/20_util/tuple/cons/96592.cc: New test.=