From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 627F83858C36; Thu, 29 Feb 2024 20:38:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 627F83858C36 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1709239084; bh=SK28jYQdY1dmqnzqahYHWmcD9hBpSp+SUNzso9+dXW8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=hEZLExdomQNMOrE1xi9C/YzSEPNlMh8vwu2cZWIzxlEvgZdUuJ0qWV9e5JZhZ/NT/ 5I14w9XUqPP5fsBezK7/PFSfKS0nK0Kl467coSW8+BXMLFbSdRXvHZSDP5j2kT4quC VaaGPxBclaK+CdI6/clNb9emxUgiSc9y4ApckBWI= From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/114147] [11/12/13/14 Regression] tuple allocator-extended constructor requires non-explicit default constructor Date: Thu, 29 Feb 2024 20:38:03 +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.1.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to 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=3D114147 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |redi at gcc dot gnu= .org --- Comment #6 from Jonathan Wakely --- For the record, it looks like I broke this in commit r10-908 by adding a constraint to that constructor (which was good) but not adding another over= load with the explicit constraint (which was bad): // Allocator-extended constructors. - template + template::value> =3D true> tuple(allocator_arg_t __tag, const _Alloc& __a) : _Inherited(__tag, __a) { }=