From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3731 invoked by alias); 29 Jun 2017 08:56:03 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 3712 invoked by uid 89); 29 Jun 2017 08:56:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD autolearn=no version=3.3.2 spammy=gently, HTo:D*oracle.com X-HELO: aserp1040.oracle.com Received: from aserp1040.oracle.com (HELO aserp1040.oracle.com) (141.146.126.69) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 29 Jun 2017 08:56:00 +0000 Received: from aserv0022.oracle.com (aserv0022.oracle.com [141.146.126.234]) by aserp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id v5T8twnT007365 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Thu, 29 Jun 2017 08:55:58 GMT Received: from userv0122.oracle.com (userv0122.oracle.com [156.151.31.75]) by aserv0022.oracle.com (8.14.4/8.14.4) with ESMTP id v5T8twem011209 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Thu, 29 Jun 2017 08:55:58 GMT Received: from abhmp0011.oracle.com (abhmp0011.oracle.com [141.146.116.17]) by userv0122.oracle.com (8.14.4/8.14.4) with ESMTP id v5T8tvkb029254; Thu, 29 Jun 2017 08:55:58 GMT Received: from [192.168.1.4] (/87.16.215.96) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Thu, 29 Jun 2017 01:55:57 -0700 Subject: Re: [C++ Patch] Replace a few more error + error with error + inform To: Paolo Carlini References: <8407427e-d71a-e7ab-80b4-c43241044918@oracle.com> Cc: Jason Merrill , "gcc-patches@gcc.gnu.org" From: Paolo Carlini Message-ID: <966415f3-ffc0-7adc-f248-35eec2b0b7a4@oracle.com> Date: Thu, 29 Jun 2017 08:56:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.0 MIME-Version: 1.0 In-Reply-To: <8407427e-d71a-e7ab-80b4-c43241044918@oracle.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2017-06/txt/msg02235.txt.bz2 Hi, gently pinging this, still in my tree: On 19/05/2017 18:13, Paolo Carlini wrote: > Hi, > > while looking into some bugs (eg, c++/71464) I noticed a few more of > those consecutive errors, which I propose to adjust per the below > patchlet. The second case in add_method is a bit tricky because in > principle we'd really like to be more specific (eg, clang talks about > constructors which cannot be redeclared, member functions which cannot > be redeclared and many more) and avoid verbose diagnostic, but in the > below I only try to avoid emitting error + error... Tested x86_64-linux. https://gcc.gnu.org/ml/gcc-patches/2017-05/msg01593.html Thanks, Paolo.