From patchwork Tue Oct 7 12:36:34 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 397286 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 05FDE1400B0 for ; Tue, 7 Oct 2014 23:36:45 +1100 (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=rbRnMJkyF6FQxWNDzbIwbAkqxkg/0vSSLR6ScJLAChFyapyLT80xZ o4Sk4JjRWovg9QXRqHLzL9TBlMJof0SM5nevq6VpwxwhwHX86rciHeCHFfKqUPLt UVy8BIIQbQV4oY9OjPFNuAYl8MNjY/MygEe462VxC8OSUVhbYZURYQ= 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=p8B+00TbJWTmXr6OhJpuhXF4hCs=; b=CrDwIcuPVjNPR2fj5JsB 3eQB1VKqXnJ7jcJasNDKNP4ku3LHUA6jcPtu1DAtUz2h5cUl4f42QCJjhkZc/6Sx T7K/6oQ1qN/bSpvwlykTXMwaFov7OrQ+NNLVVETWh7/LIS4734OmJJ4l25/w3Z34 ifCDYTlcPk2OfFAg4c/kgV0= Received: (qmail 20888 invoked by alias); 7 Oct 2014 12:36:39 -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 20868 invoked by uid 89); 7 Oct 2014 12:36:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 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, 07 Oct 2014 12:36:37 +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 s97CaaPN006653 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 7 Oct 2014 08:36:36 -0400 Received: from localhost (ovpn-116-121.ams2.redhat.com [10.36.116.121]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s97CaZbc015143; Tue, 7 Oct 2014 08:36:35 -0400 Date: Tue, 7 Oct 2014 13:36:34 +0100 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [wwwdocs] Update libstdc++ section of gcc-5/changes.html Message-ID: <20141007123634.GP4197@redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) Document the latest additions. ? gcc-5/.changes.html.swp Index: gcc-5/changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v retrieving revision 1.14 diff -u -u -r1.14 changes.html --- gcc-5/changes.html 2 Oct 2014 10:13:36 -0000 1.14 +++ gcc-5/changes.html 7 Oct 2014 12:34:27 -0000 @@ -96,15 +96,33 @@
  • std::deque meets the allocator-aware container requirements;
  • movable and swappable iostream classes;
  • support for std::aligned_union;
  • +
  • I/O manipulators std::hexfloat and + std::defaultfloat; +
  • +
  • Support for the C++11 hexfloat manipulator changes how + the num_put facet formats floating point types when + ios_base::fixed|ios_base::scientific is set in a stream's + fmtflags. This change affects all language modes, even + though the C++98 standard gave no special meaning to that combination + of flags. To prevent the use of hexadecimal notation for floating point + types use str.unsetf(std::ios_base::floatfield) to clear + the relevant bits in str.flags(). +
  • Improved experimental support for C++14, including:
    • std::is_final type trait;
  • -
  • An implementation of std::experimental::any.
  • +
  • + Improved experimental support for the Library Fundamentals TS, including: +
      +
    • Class std::experimental::any;
    • +
    • Function template std::experimental::apply;
    • +
    +
  • New random number distributions logistic_distribution and uniform_on_sphere_distribution as extensions.
  • GDB