From patchwork Wed Sep 24 12:58:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 392944 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 D39F7140097 for ; Wed, 24 Sep 2014 22:58:51 +1000 (EST) 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:mime-version:content-type; q=dns; s= default; b=oj5+DNrsvPjqtG3U9lBlmBt3Mz2eq/7naL+8XjnQUT1BuVelGSkbl 9vwrZmWzyYntRO3/KiDEzf4xcBur5Fk8raKryUVueCipebjIB58QyHZJRnpO+k/i RHVhKeZqL8dcu3cVBybAA9C7HIXWbKL4t130qDcU6dlAsfSTBDJ/xk= 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:mime-version:content-type; s= default; bh=BDdP2NuV01DQ8uFTJEBcdCa2X/0=; b=jWWu2tYQMs30ca6JVDcA +HSYmuHagblmOhg1dYieosXXhDeNTBymTZa0wGetJkPI+o2grZ/DVtDjmQTWvIvG GAiJQh2kyAgSB1ilYSmbPpk2O0vjGYwzPfrDdCMluJ57kZEZ/JyQdcqKT+glJ9Vr 4O+Zpbs405mJQVStvOquJp4= Received: (qmail 15266 invoked by alias); 24 Sep 2014 12:58:44 -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 15257 invoked by uid 89); 24 Sep 2014 12:58:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 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; Wed, 24 Sep 2014 12:58:42 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s8OCwe5V015324 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Wed, 24 Sep 2014 08:58:41 -0400 Received: from localhost (ovpn-116-40.ams2.redhat.com [10.36.116.40]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s8OCwd3x021760 for ; Wed, 24 Sep 2014 08:58:40 -0400 Date: Wed, 24 Sep 2014 13:58:38 +0100 From: Jonathan Wakely To: gcc-patches@gcc.gnu.org Subject: [wwwdocs] Update libstdc++ section of gcc-5/changes.html Message-ID: <20140924125838.GT2669@redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) I forgot to send this patch a couple of days ago. Document recent libstdc++ changes on trunk. Also tweak the 4.9 notes slightly for consistency. Committed to cvs. Index: gcc-5/changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- gcc-5/changes.html 5 Sep 2014 08:25:46 -0000 1.9 +++ gcc-5/changes.html 22 Sep 2014 15:31:58 -0000 1.10 @@ -84,12 +84,16 @@
  • Improved support for C++11, including:
      +
    • std::deque meets the allocator-aware container requirements;
    • +
    • movable and swappable iostream classes;
    • support for std::aligned_union;
  • An implementation of std::experimental::any.
  • New random number distributions logistic_distribution and uniform_on_sphere_distribution as extensions.
  • +
  • GDB + Xmethods for std::vector and std::unique_ptr;
  • Fortran

    Index: gcc-4.9/changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/changes.html,v retrieving revision 1.79 retrieving revision 1.80 diff -u -r1.79 -r1.80 --- gcc-4.9/changes.html 23 Aug 2014 15:58:55 -0000 1.79 +++ gcc-4.9/changes.html 22 Sep 2014 15:31:57 -0000 1.80 @@ -344,7 +344,7 @@
  • implemention of std::make_unique;
  • implemention of std::shared_lock;
  • making std::result_of SFINAE-friendly;
  • -
  • adding operator() to integral_constant;
  • +
  • adding operator() to std::integral_constant;
  • adding user-defined literals for standard library types std::basic_string, std::chrono::duration, and std::complex;