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 [63.128.21.124]) by sourceware.org (Postfix) with ESMTP id 3E4173857C59 for ; Tue, 2 Feb 2021 10:14:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 3E4173857C59 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-492-Zakzgn2INte5CJc6Z_j4YQ-1; Tue, 02 Feb 2021 05:14:47 -0500 X-MC-Unique: Zakzgn2INte5CJc6Z_j4YQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 9F0148015DE; Tue, 2 Feb 2021 10:14:46 +0000 (UTC) Received: from localhost (unknown [10.33.37.24]) by smtp.corp.redhat.com (Postfix) with ESMTP id 26E9F7EA80; Tue, 2 Feb 2021 10:14:44 +0000 (UTC) Date: Tue, 2 Feb 2021 10:14:44 +0000 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: Re: [committed] libstdc++: Update C++17 status table for Message-ID: <20210202101444.GA49261@redhat.com> References: <20210201160802.GA11158@redhat.com> MIME-Version: 1.0 In-Reply-To: <20210201160802.GA11158@redhat.com> X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: multipart/mixed; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline X-Spam-Status: No, score=-14.5 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, 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: Tue, 02 Feb 2021 10:14:51 -0000 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline On 01/02/21 16:08 +0000, Jonathan Wakely wrote: >libstdc++-v3/ChangeLog: > > * doc/xml/manual/status_cxx2011.xml: Update std::call_once > status. > * doc/xml/manual/status_cxx2014.xml: Likewise. > * doc/xml/manual/status_cxx2017.xml: Likewise. Update > std::from_chars and std::to_chars status. Fix formatting. > * doc/html/manual/status.html: Regenerate. I noticed we have an unwanted extra column at the right of the C++11/14/17 tables, due to a stray element. Fixed by this patch. Committed to trunk. --1yeeQ81UyVL57Vl7 Content-Type: text/x-patch; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" commit 886f9f519c0c6297c95887839e318fa79cba2052 Author: Jonathan Wakely Date: Tue Feb 2 09:55:52 2021 libstdc++: Fix markup for status tables in docs libstdc++-v3/ChangeLog: * doc/xml/manual/status_cxx2011.xml: Remove stray table cell. * doc/xml/manual/status_cxx2014.xml: Likewise. * doc/xml/manual/status_cxx2017.xml: Likewise. * doc/html/manual/status.html: Regenerate. diff --git a/libstdc++-v3/doc/xml/manual/status_cxx2011.xml b/libstdc++-v3/doc/xml/manual/status_cxx2011.xml index e13ca566ea3..be873962597 100644 --- a/libstdc++-v3/doc/xml/manual/status_cxx2011.xml +++ b/libstdc++-v3/doc/xml/manual/status_cxx2011.xml @@ -2174,7 +2174,6 @@ particular release. Class template regex_traits Partial transform_primary is not correctly implemented - 28.8 diff --git a/libstdc++-v3/doc/xml/manual/status_cxx2014.xml b/libstdc++-v3/doc/xml/manual/status_cxx2014.xml index 7b2d4603b24..61bea5adad5 100644 --- a/libstdc++-v3/doc/xml/manual/status_cxx2014.xml +++ b/libstdc++-v3/doc/xml/manual/status_cxx2014.xml @@ -1142,7 +1142,6 @@ not in any particular release. Class template regex_traits Partial transform_primary is not correctly implemented - 28.8 diff --git a/libstdc++-v3/doc/xml/manual/status_cxx2017.xml b/libstdc++-v3/doc/xml/manual/status_cxx2017.xml index 7b5df3d1385..aa34b8c3cf5 100644 --- a/libstdc++-v3/doc/xml/manual/status_cxx2017.xml +++ b/libstdc++-v3/doc/xml/manual/status_cxx2017.xml @@ -2224,7 +2224,6 @@ since C++14 and the implementation is complete. Class template regex_traits Partial transform_primary is not correctly implemented - 31.8 --1yeeQ81UyVL57Vl7--