From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 50CE038582BE; Thu, 5 Oct 2023 09:10:55 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 50CE038582BE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1696497055; bh=xydNPcbAOU4wJU7G7w9XDwRtAcGE1gbk9B+5HBMSyNU=; h=To:Subject:Date:From:From; b=fCMoM5keNuYswx7Mvj5jQuspL5A1y691+noiQJwTdiYnNZKYz3MbvM59/n1SptXo+ APR/bRBy5SPNt1hlUNVvsync24eHFkYxsBvKsQlF6docQNIiYgmMC+auds7M/hLAvR Dq4RxCIyb/0jG5G+FH+hyuNC3+18C4l60I1oFlyY= To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. 1b1a0cf29826ce9287a203cde00fd1512918fc17 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 6ffdf53463831ec99b718151314e225c747a32d1 X-Git-Newrev: 1b1a0cf29826ce9287a203cde00fd1512918fc17 Message-Id: <20231005091055.50CE038582BE@sourceware.org> Date: Thu, 5 Oct 2023 09:10:55 +0000 (GMT) From: Jonathan Wakely List-Id: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gcc-wwwdocs". The branch, master has been updated via 1b1a0cf29826ce9287a203cde00fd1512918fc17 (commit) from 6ffdf53463831ec99b718151314e225c747a32d1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1b1a0cf29826ce9287a203cde00fd1512918fc17 Author: Jonathan Wakely Date: Thu Oct 5 10:09:54 2023 +0100 Add

to new item in C++ non-bugs list diff --git a/htdocs/bugs/index.html b/htdocs/bugs/index.html index 41edc561..da3d4c0d 100644 --- a/htdocs/bugs/index.html +++ b/htdocs/bugs/index.html @@ -541,12 +541,14 @@ for details.

Functions can be called without qualifying them with their namespace.
+

Argument Dependent Lookup (ADL) means that functions can be found in namespaces associated with their arguments. This means that move(arg) can call std::move if arg is a type defined in namespace std, such as std::string or std::vector. If std::move is not the function you intended to call, use a qualified name such as ::move(arg) or foo::move(arg). +

Nested classes can access private members and types of the containing ----------------------------------------------------------------------- Summary of changes: htdocs/bugs/index.html | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- gcc-wwwdocs