From patchwork Tue Jan 20 16:38:23 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 431159 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id DFD351402DD for ; Wed, 21 Jan 2015 03:38:46 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:references:mime-version:content-type :in-reply-to; q=dns; s=default; b=wC98AhCb1nTg9cbp/IoD0dyTBHqU13 vzuU87JtgB1ADazHvOf3/garQ+3c+mbPDuvMbNRwNOM42PBhM1rSon0JGS9iVx/G MB2VeMBvhzkJ7iggBwc/9wOzJRGWuYVBkQDqDnKROnRWeKkDRjbvSW48HZZmzwXQ FD0wpavDfhuJU= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:references:mime-version:content-type :in-reply-to; s=default; bh=p29OB+zMgWZ0HAJeY7TochpImCU=; b=GCtV YBRdc55OHm2WjLAHbkGu2PkUaNwrs0wM/BmJ7dSuWF58dEXc5Ib//XoauCpJjHR0 z8ak6xAOGTdQTDCpe7Gd3Zwg5W/TDKpYdrzjU8XvZ0Xn4wocnNO+4y+X6c/1rxjR hX8BRazZb2mIUnm8Gx4aFWmnTUswxAQLjTC7674= Received: (qmail 9842 invoked by alias); 20 Jan 2015 16:38:29 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 9821 invoked by uid 89); 20 Jan 2015 16:38:27 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, SPF_HELO_PASS, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 20 Jan 2015 16:38:26 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t0KGcOmS002293 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 20 Jan 2015 11:38:24 -0500 Received: from localhost (ovpn-116-18.ams2.redhat.com [10.36.116.18]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t0KGcNa3019173; Tue, 20 Jan 2015 11:38:24 -0500 Date: Tue, 20 Jan 2015 16:38:23 +0000 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [wwwdocs] Re: [patch] Update C++11 status in libstdc++ docs Message-ID: <20150120163823.GZ3360@redhat.com> References: <20150117032519.GQ3360@redhat.com> <20150118154913.GB3360@redhat.com> <20150120123227.GW3360@redhat.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20150120123227.GW3360@redhat.com> User-Agent: Mutt/1.5.23 (2014-03-12) Here's the wwwdocs patch for gcc-5/changes.html Committed to CVS. Index: gcc-5/changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v retrieving revision 1.68 diff -u -r1.68 changes.html --- gcc-5/changes.html 20 Jan 2015 15:49:07 -0000 1.68 +++ gcc-5/changes.html 20 Jan 2015 16:37:08 -0000 @@ -293,10 +293,13 @@

Runtime Library (libstdc++)

    +
  • A new implementation of std::string is enabled by default, + using the small string optimization instead of + copy-on-write reference counting;
  • A new implementation of std::list is enabled by default, with an O(1) size() function;
  • - Improved support for C++11, including: + Full support for C++11, including the following new features:
    • std::deque and std::vector<bool> meet the allocator-aware container requirements;
    • @@ -307,10 +310,11 @@ std::is_trivially_constructible, std::is_trivially_assignable etc.; -
    • I/O manipulators std::put_time, +
    • I/O manipulators std::put_time, std::get_time, std::hexfloat and std::defaultfloat;
    • generic locale-aware std::isblank;
    • +
    • locale facets for Unicode conversion;
    • atomic operations for std::shared_ptr;
    • std::notify_all_at_thread_exit() and functions for making futures ready at thread exit;
    • @@ -326,9 +330,14 @@ the relevant bits in str.flags().
    • - Improved experimental support for C++14, including: + Full experimental support for C++14, including the following + new features:
      • std::is_final type trait;
      • +
      • heterogeneous comparison lookup in associative containers.
      • +
      • global functions cbegin, cend, rbegin, + rend, crbegin, and crend for + range access to containers, arrays and initializer lists.