From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22578 invoked by alias); 9 Sep 2015 19:06:53 -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 22563 invoked by uid 89); 9 Sep 2015 19:06:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.1 required=5.0 tests=AWL,BAYES_00,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 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 (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 09 Sep 2015 19:06:52 +0000 Received: from userv0021.oracle.com (userv0021.oracle.com [156.151.31.71]) by aserp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id t89J6neQ011992 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 9 Sep 2015 19:06:50 GMT Received: from aserv0121.oracle.com (aserv0121.oracle.com [141.146.126.235]) by userv0021.oracle.com (8.13.8/8.13.8) with ESMTP id t89J6m90024375 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Wed, 9 Sep 2015 19:06:49 GMT Received: from abhmp0019.oracle.com (abhmp0019.oracle.com [141.146.116.25]) by aserv0121.oracle.com (8.13.8/8.13.8) with ESMTP id t89J6m1g032649; Wed, 9 Sep 2015 19:06:48 GMT Received: from [192.168.1.4] (/87.10.208.171) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Wed, 09 Sep 2015 12:06:48 -0700 Subject: Re: [C++ Patch] PR 67318 ("[6 regression] Parsing error when using abbreviated integral type names in template parameter pack declaration") To: Jason Merrill , "gcc-patches@gcc.gnu.org" References: <55F060D3.4070208@oracle.com> <55F07DA4.4030808@redhat.com> From: Paolo Carlini Message-ID: <55F08345.2010408@oracle.com> Date: Wed, 09 Sep 2015 19:35:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <55F07DA4.4030808@redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-09/txt/msg00611.txt.bz2 Hi, On 09/09/2015 08:42 PM, Jason Merrill wrote: > We should fix the logic in cp_parser_parameter_declaration to handle > this, not work around it here. Ok, that's what I meant for "more aggressive" ;) I didn't try do that immediately when I noticed that the function is called from a few other places, but I'll do that now. If I can't sort it out as quickly as I want I'll tell you, the issue seems rather annoying... Thanks! Paolo.