From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7610 invoked by alias); 13 Nov 2015 15:22:01 -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 7578 invoked by uid 89); 13 Nov 2015 15:22:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-qk0-f182.google.com Received: from mail-qk0-f182.google.com (HELO mail-qk0-f182.google.com) (209.85.220.182) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 13 Nov 2015 15:21:59 +0000 Received: by qkcl124 with SMTP id l124so50459371qkc.3; Fri, 13 Nov 2015 07:21:57 -0800 (PST) X-Received: by 10.140.220.82 with SMTP id q79mr16725594qhb.95.1447428117062; Fri, 13 Nov 2015 07:21:57 -0800 (PST) Received: from [192.168.0.26] (97-124-162-152.hlrn.qwest.net. [97.124.162.152]) by smtp.gmail.com with ESMTPSA id e7sm5406365qkb.40.2015.11.13.07.21.55 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 13 Nov 2015 07:21:56 -0800 (PST) Message-ID: <56460012.4030602@gmail.com> Date: Fri, 13 Nov 2015 15:22:00 -0000 From: Martin Sebor User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Jonathan Wakely , libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org CC: larsbj@gulik.net Subject: Re: [patch] Implement std::experimental::source_location (sort of) References: <20151113125649.GO2937@redhat.com> In-Reply-To: <20151113125649.GO2937@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-11/txt/msg01716.txt.bz2 On 11/13/2015 05:56 AM, Jonathan Wakely wrote: > This is a non-conforming implementation of > https://rawgit.com/cplusplus/fundamentals-ts/v2/fundamentals-ts.html#reflection.src_loc > > > It doesn't provide any column numbers, and fails to meet the > requirement that using current() in a NSDMI will refer to the location > of the constructor ... but maybe it's good enough until we get the > necessary front-end support. It is experimental, after all. > > Thoughts? Lars (CC'd) mentioned he was interested in implementing the front end support (http://gcc.gnu.org/PR66561). Martin