From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTP id 7B45B3AA7CB6 for ; Thu, 5 Aug 2021 14:41:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7B45B3AA7CB6 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-538-jQ1-O7aCM9GBD4v-3m0Ixg-1; Thu, 05 Aug 2021 10:41:01 -0400 X-MC-Unique: jQ1-O7aCM9GBD4v-3m0Ixg-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id BED7E871471; Thu, 5 Aug 2021 14:40:49 +0000 (UTC) Received: from localhost (unknown [10.33.36.118]) by smtp.corp.redhat.com (Postfix) with ESMTP id 71BD260BF4; Thu, 5 Aug 2021 14:40:49 +0000 (UTC) Date: Thu, 5 Aug 2021 15:40:48 +0100 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: Re: [committed] libstdc++: Move attributes that follow requires-clauses [PR101782] Message-ID: References: MIME-Version: 1.0 In-Reply-To: X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline X-Spam-Status: No, score=-8.2 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_LOW, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libstdc++@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++ mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Aug 2021 14:41:03 -0000 On 05/08/21 15:19 +0100, Jonathan Wakely wrote: >On 04/08/21 12:55 +0100, Jonathan Wakely wrote: >>This adds [[nodiscard]] throughout , as proposed by P2377R0 >>(with some minor corrections). >> >>The attribute is added for all modes from C++11 up, using >>[[__nodiscard__]] or _GLIBCXX_NODISCARD where C++17 [[nodiscard]] can't >>be used directly. > >This change causes errors when -fconcepts-ts is used. Fixed like so. > >Tested powerpc64le-linux, committed to trunk. > >commit 7b1de3eb9ed3f8dde54732d88520292c5ad1157d >Author: Jonathan Wakely >Date: Thu Aug 5 13:34:00 2021 > > libstdc++: Move attributes that follow requires-clauses [PR101782] > > As explained in the PR, the grammar in the Concepts TS means that a [ > token following a requires-clause is parsed as part of the > logical-or-expression rather than the start of an attribute. That makes > the following ill-formed when using -fconcepts-ts: > > template requires foo [[nodiscard]] int f(T); > > This change moves all attributes that follow a requires-clause to the > end of the function declarator. Except that as Jakub pointed out, putting it there doesn't work. It needs to be: template requires foo int f [[nodiscard]] (T); At least the testsuite isn't failing now, but the attributes I moved have no effect. I'll fix it ... some time.