From patchwork Sun Sep 2 20:48:33 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerald Pfeifer X-Patchwork-Id: 965157 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-484969-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=pfeifer.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="do7XL0aK"; dkim-atps=neutral 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 423QDj1k9Yz9s2P for ; Mon, 3 Sep 2018 06:48:52 +1000 (AEST) 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=nQE/ZvfhGrN6KMkGuBX+F73rCOH17i8L4bHqJ6KQYCtDTn8rVLnXY GCXxAnKTzWldIwsP9SF+8y5GM9dZP6s7J8mOgkPrJPwMDmvKiz4J16OE6AZsNqZI RrQBW4qM4X8odMNILBGZVbQ9GpZqzqNgMib9+5fIO94JktvaTpjcec= 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=wHNtv/QB6BDRws/kN08Smr+fn34=; b=do7XL0aKVDoI4NA4X4Ri e1VmvlPv4InQfdhsugw2Tg6QuElJVnxPyT7zUzBjKFSUamJuhBMKbEAuqTLeYrmM pMLK1WsERVbTivcmm3jWdpzJxNDoUS4+WFEvcHP6NLb3iL+HDeZhrGRjRAZu9OXo 4hlMSN47Jly5D8l7eG6BSQw= Received: (qmail 24507 invoked by alias); 2 Sep 2018 20:48: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 24452 invoked by uid 89); 2 Sep 2018 20:48:38 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-11.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=gcc49, gcc-4.9, jtc1, UD:cxx1y.html X-HELO: ainaz.pair.com Received: from ainaz.pair.com (HELO ainaz.pair.com) (209.68.2.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 02 Sep 2018 20:48:37 +0000 Received: from ainaz.pair.com (localhost [127.0.0.1]) by ainaz.pair.com (Postfix) with ESMTP id E6649B53ED3 for ; Sun, 2 Sep 2018 16:48:35 -0400 (EDT) Received: from anthias (vie-91-186-158-155.dsl.sil.at [91.186.158.155]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id 77CB2B53EC7 for ; Sun, 2 Sep 2018 16:48:35 -0400 (EDT) Date: Sun, 2 Sep 2018 22:48:33 +0200 (CEST) From: Gerald Pfeifer To: gcc-patches@gcc.gnu.org Subject: [wwwdocs] gcc-4.9/changes.html - replace use of Message-ID: MIME-Version: 1.0 X-IsSubscribed: yes ...with , which should render this page HTML 5 compliant. Committed. Gerald Index: gcc-4.9/changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/changes.html,v retrieving revision 1.94 diff -u -r1.94 changes.html --- gcc-4.9/changes.html 1 Sep 2018 23:42:05 -0000 1.94 +++ gcc-4.9/changes.html 2 Sep 2018 20:46:25 -0000 @@ -222,8 +222,10 @@ The G++ implementation of C++1y return type deduction for normal functions has been updated to conform to N3638, - the proposal accepted into the working paper. Most notably, it adds decltype(auto) for - getting decltype semantics rather than the template argument deduction semantics of plain auto: + the proposal accepted into the working paper. Most notably, it adds + decltype(auto) for getting decltype semantics + rather than the template argument deduction semantics of plain + auto:
 int& f();
          auto  i1 = f(); // int
@@ -236,8 +238,8 @@
 [x = 42]{ ... };
 
Actually, they have been accepted since GCC 4.5, but now the compiler doesn't -warn about them with -std=c++1y, and supports parenthesized and -brace-enclosed initializers as well. +warn about them with -std=c++1y, and supports parenthesized +and brace-enclosed initializers as well.
  • G++ supports C++1y variable length @@ -245,7 +247,7 @@ additionally supports initializers and lambda capture by reference. In C++1y mode G++ will complain about VLA uses that are not permitted by the draft standard, such as forming a pointer to VLA type or - applying sizeof to a VLA variable. Note that it now appears + applying sizeof to a VLA variable. Note that it now appears that VLAs will not be part of C++14, but will be part of a separate document and then perhaps C++17.