From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id EC5063858D39; Fri, 26 Nov 2021 23:07:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EC5063858D39 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r12-5551] libstdc++: Remove workaround for FE bug in std::tuple [PR96592] X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: 4d540c7a4a7fb87b04d06e1ee7f9b004116279a4 X-Git-Newrev: 76c6be48b7841524974754f8ea7533b82c7de77e Message-Id: <20211126230741.EC5063858D39@sourceware.org> Date: Fri, 26 Nov 2021 23:07:41 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Nov 2021 23:07:42 -0000 https://gcc.gnu.org/g:76c6be48b7841524974754f8ea7533b82c7de77e commit r12-5551-g76c6be48b7841524974754f8ea7533b82c7de77e Author: Jonathan Wakely Date: Fri Nov 26 17:46:47 2021 +0000 libstdc++: Remove workaround for FE bug in std::tuple [PR96592] The FE bug was fixed, so we don't need this workaround now. libstdc++-v3/ChangeLog: PR libstdc++/96592 * include/std/tuple (tuple::is_constructible): Remove. Diff: --- libstdc++-v3/include/std/tuple | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libstdc++-v3/include/std/tuple b/libstdc++-v3/include/std/tuple index 36dc05d97bc..fa9ff17882b 100644 --- a/libstdc++-v3/include/std/tuple +++ b/libstdc++-v3/include/std/tuple @@ -553,10 +553,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION template struct _TupleConstraints { - template // Workaround for PR 96592 - using is_constructible - = __bool_constant<__is_constructible(_Tp, _Up)>; - // Constraint for a non-explicit constructor. // True iff each Ti in _Types... can be constructed from Ui in _UTypes... // and every Ui is implicitly convertible to Ti.