From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24720 invoked by alias); 23 Jun 2017 20:40:50 -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 24698 invoked by uid 89); 23 Jun 2017 20:40:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_NONE autolearn=no version=3.3.2 spammy= X-HELO: mail-it0-f43.google.com Received: from mail-it0-f43.google.com (HELO mail-it0-f43.google.com) (209.85.214.43) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 23 Jun 2017 20:40:47 +0000 Received: by mail-it0-f43.google.com with SMTP id b205so13939904itg.1 for ; Fri, 23 Jun 2017 13:40:47 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=xOmyScNfwNhJXg7sFdJLDyTsQZh1+ZygJZFNQlj5GMQ=; b=Y2TBoEpemFDzo15D/o/8msjOPvqa80k7QEjf0R6CVNXW0g05f3c/0Ee300SPvH847w r1dcYecks//7Awqw/CVbTmDNScRFfc9kAbwpCeMwUTDi2jy20fCAF/Mekn3cud/RTb+X YN0u9fP0Z35HbYuc5j2ydG0nP7YAitnYCbjCHLhhsy5vkaM5wMHjeE/H6/k12xYIHFi+ Lty4fK+vJWc4WI+TtGYNguNJ+0vEBRXYgawEe3U2VdRAOSM3FBHCgPkKL4xwWDzM57XN C5VwAaoiTnOzSaXEh/lHszKmbzukCTI55uymm8fEeG22POILDb6XF5T+8pOlhjnn9EAP K5EA== X-Gm-Message-State: AKS2vOzwu9rlIVKeaDjY/UmLGatC1EKuO0lxCcu/MFGLdLi76u8HNtpo T+t0rcUfHSEIil6bfg9m1DmyJQuBW5wl X-Received: by 10.36.29.147 with SMTP id 141mr9002314itj.83.1498250446336; Fri, 23 Jun 2017 13:40:46 -0700 (PDT) MIME-Version: 1.0 Received: by 10.107.20.139 with HTTP; Fri, 23 Jun 2017 13:40:25 -0700 (PDT) In-Reply-To: <689cbd6e-7974-4aa9-9361-9f04f920d9a8@oracle.com> References: <689cbd6e-7974-4aa9-9361-9f04f920d9a8@oracle.com> From: Jason Merrill Date: Fri, 23 Jun 2017 20:40:00 -0000 Message-ID: Subject: Re: [C++ Patch] PR 62315 ("do not print typename in diagnostic if the original code does not have it") To: Paolo Carlini Cc: "gcc-patches@gcc.gnu.org" Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2017-06/txt/msg01828.txt.bz2 OK. On Fri, Jun 2, 2017 at 4:35 AM, Paolo Carlini wrote: > Hi, > > a while ago Manuel noticed that printing 'typename' in error messages about > missing 'typename' can be confusing. That seems easy to fix, in fact we > already handle correctly a similar situation in grokdeclarator. Tested > x86_64-linux. > > Thanks, Paolo. > > ////////////////// > >