From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9995 invoked by alias); 15 Oct 2014 09:50:13 -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 9916 invoked by uid 89); 15 Oct 2014 09:50:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: userp1040.oracle.com Received: from userp1040.oracle.com (HELO userp1040.oracle.com) (156.151.31.81) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Wed, 15 Oct 2014 09:50:12 +0000 Received: from ucsinet22.oracle.com (ucsinet22.oracle.com [156.151.31.94]) by userp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id s9F9o9Qi021767 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 15 Oct 2014 09:50:10 GMT Received: from userz7021.oracle.com (userz7021.oracle.com [156.151.31.85]) by ucsinet22.oracle.com (8.14.5+Sun/8.14.5) with ESMTP id s9F9o9JF017461 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Wed, 15 Oct 2014 09:50:09 GMT Received: from abhmp0004.oracle.com (abhmp0004.oracle.com [141.146.116.10]) by userz7021.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id s9F9o8k7028935; Wed, 15 Oct 2014 09:50:09 GMT Received: from [192.168.1.4] (/79.52.197.187) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Wed, 15 Oct 2014 02:50:08 -0700 Message-ID: <543E434D.5060209@oracle.com> Date: Wed, 15 Oct 2014 09:50:00 -0000 From: Paolo Carlini User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.1.0 MIME-Version: 1.0 To: Jonathan Wakely CC: "gcc-patches@gcc.gnu.org" , libstdc++ Subject: Re: [v3] Minimally exercise the other alias_decls in References: <543E3E07.5030901@oracle.com> <20141015094415.GE4197@redhat.com> In-Reply-To: <20141015094415.GE4197@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-10/txt/msg01327.txt.bz2 Hi, On 10/15/2014 11:44 AM, Jonathan Wakely wrote: > Index: testsuite/20_util/add_const/requirements/alias_decl.cc >> =================================================================== >> --- testsuite/20_util/add_const/requirements/alias_decl.cc (revision 0) >> +++ testsuite/20_util/add_const/requirements/alias_decl.cc (working >> copy) >> @@ -0,0 +1,33 @@ >> +// { dg-options "-std=gnu++1y" } > > We can use -std=gnu++14 and probably should prefer it. I agree, the other day I asked myself why we were using 1y in those tests, and overwhelmed today I preferred to just remain consistent for the time being. > We might also want to consider a global s/gnu++0x/gnu++11/ some day. And s/gnu++1y/gnu++14 of course ;) Paolo.