From patchwork Thu Jan 19 14:48:39 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerald Pfeifer X-Patchwork-Id: 63404 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id C5783385828E for ; Thu, 19 Jan 2023 14:48:56 +0000 (GMT) X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) by sourceware.org (Postfix) with ESMTPS id 603A13858C52 for ; Thu, 19 Jan 2023 14:48:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 603A13858C52 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=pfeifer.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=pfeifer.com Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id 1B7E233E8E for ; Thu, 19 Jan 2023 09:48:41 -0500 (EST) Received: from [192.168.1.80] (188-23-1-149.adsl.highway.telekom.at [188.23.1.149]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id AA6C033E8C for ; Thu, 19 Jan 2023 09:48:40 -0500 (EST) Date: Thu, 19 Jan 2023 15:48:39 +0100 (CET) From: Gerald Pfeifer To: gcc-patches@gcc.gnu.org Subject: [committed] wwwdocs: gcc-4.9: Adjust www.open-std.org links to https MIME-Version: 1.0 X-Scanned-By: mailmunge 3.10 on 209.68.5.143 Message-Id: <20230119144841.1B7E233E8E@hamza.pair.com> X-Spam-Status: No, score=-9.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, RCVD_IN_BARRACUDACENTRAL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gcc-patches-bounces+patchwork=sourceware.org@gcc.gnu.org Sender: "Gcc-patches" Pushed. Gerald --- htdocs/gcc-4.9/changes.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/gcc-4.9/changes.html b/htdocs/gcc-4.9/changes.html index 274bd814..9090c0ea 100644 --- a/htdocs/gcc-4.9/changes.html +++ b/htdocs/gcc-4.9/changes.html @@ -222,7 +222,7 @@
  • The G++ implementation of C++1y return type deduction for normal functions has been updated to conform to - N3638, + 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 @@ -312,7 +312,7 @@ auto add = [] wwwdocs: <typename T> (T a, T b) { return a + b; };
  • G++ supports unconstrained generic functions as specified by §4.1.2 and §5.1.1 of - + N3889: Concepts Lite Specification. Briefly, auto may be used as a type-specifier in a parameter declaration of any function declarator in order to introduce an