From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTP id 0FA04398B81C for ; Thu, 29 Apr 2021 20:26:01 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 0FA04398B81C Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-222-jH9kOCBjP6CIu4604ZfEYA-1; Thu, 29 Apr 2021 16:25:59 -0400 X-MC-Unique: jH9kOCBjP6CIu4604ZfEYA-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 4E2F01898298; Thu, 29 Apr 2021 20:25:58 +0000 (UTC) Received: from localhost (unknown [10.33.36.164]) by smtp.corp.redhat.com (Postfix) with ESMTP id F31075C1A3; Thu, 29 Apr 2021 20:25:57 +0000 (UTC) Date: Thu, 29 Apr 2021 21:25:57 +0100 From: Jonathan Wakely To: Patrick Palka Cc: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: Re: [PATCH] c++: Implement P2367 changes to avoid some list-initialization Message-ID: <20210429202557.GZ3008@redhat.com> References: <20210429150459.609423-1-ppalka@redhat.com> MIME-Version: 1.0 In-Reply-To: <20210429150459.609423-1-ppalka@redhat.com> X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline X-Spam-Status: No, score=-8.1 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libstdc++@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++ mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Apr 2021 20:26:02 -0000 On 29/04/21 11:04 -0400, Patrick Palka via Libstdc++ wrote: >This implements the wording changes of P2367R0 "Remove misuses of >list-initialization from Clause 24", modulo the parts that depend >on P1739R4 which we don't yet implement (due to LWG 3407). > >Tested on x86_64-pc-linux-gnu, does this look OK for trunk? OK, thanks.