From patchwork Sat Nov 25 14:43:18 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerald Pfeifer X-Patchwork-Id: 1868446 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=2620:52:3:1:0:246e:9693:128c; helo=server2.sourceware.org; envelope-from=gcc-patches-bounces+incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=patchwork.ozlabs.org) Received: from server2.sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4Scvjk1L4Rz1ySD for ; Sun, 26 Nov 2023 01:43:36 +1100 (AEDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 8FBC33858288 for ; Sat, 25 Nov 2023 14:43:33 +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 0F9443858C36 for ; Sat, 25 Nov 2023 14:43:21 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 0F9443858C36 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=pfeifer.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=pfeifer.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 0F9443858C36 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=209.68.5.143 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1700923402; cv=none; b=smelkWZsOInHupQYOIZI2m405KcoxST/emJy8DKzIoX4/kslGQox9i65XlS86IKKfqpTEUWUQkW7J75CRVf6j4tEI7gPnZ4n308J35GfbtwqkHg5Y3mXTo2wC48r/DJrlHBTyDj+2/i6IB1+NkDyhx2+UEeLitSRpQXD8ggmjGI= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1700923402; c=relaxed/simple; bh=2NQbeQTKLhpX2lq4/bzcgflaLu6RyxnSLHbkLKCPZJk=; h=Date:From:To:Subject:MIME-Version:Message-Id; b=kfY1ns5bcb7DsHsGL0YzHSnsBe2IcpaS6PGT7fd+v3HWFZ8SaftdIS1eTKlxy38o25CAyltxrc+STqRfhlS+2rDinGxVVYhmRzgak/aIs92nl02U/y+77e+kYCZZT90fGlVLhqKnneRcLANm9HRLmViDfk/A7HVGWmOlwFdbnlk= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id 855A033EA0 for ; Sat, 25 Nov 2023 09:43:20 -0500 (EST) Received: from daya.localdomain (188-23-0-79.adsl.highway.telekom.at [188.23.0.79]) (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 1A26E33E9F for ; Sat, 25 Nov 2023 09:43:19 -0500 (EST) Date: Sat, 25 Nov 2023 15:43:18 +0100 (CET) From: Gerald Pfeifer To: gcc-patches@gcc.gnu.org Subject: [pushed] wwwdocs: gcc-13: Refer to GCC (instead of gcc) MIME-Version: 1.0 X-Scanned-By: mailmunge 3.11 on 209.68.5.143 Message-Id: <20231125144320.855A033EA0@hamza.pair.com> X-Spam-Status: No, score=-10.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, KAM_SHORT, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE 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.30 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gcc-patches-bounces+incoming=patchwork.ozlabs.org@gcc.gnu.org Refer to the overall project as GCC. Pushed. Gerald --- htdocs/gcc-13/porting_to.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/gcc-13/porting_to.html b/htdocs/gcc-13/porting_to.html index db0bf2fa..c727d66f 100644 --- a/htdocs/gcc-13/porting_to.html +++ b/htdocs/gcc-13/porting_to.html @@ -73,7 +73,7 @@ may change behavior or fail to compile in C++23. For example:

implicit move, whereby the compiler does two separate overload resolutions: one treating the operand as an rvalue, and then (if that resolution fails) another one treating the operand as an lvalue. In the standard this was -introduced in C++11 and implemented in gcc in +introduced in C++11 and implemented in GCC in r251035. In