This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [C++ PATCH] PR c++/65923


On Wed, Apr 4, 2018 at 10:35 AM, Ville Voutilainen
<ville.voutilainen@gmail.com> wrote:
> On 3 April 2018 at 17:19, Ville Voutilainen <ville.voutilainen@gmail.com> wrote:
>>     * parser.c (cp_parser_unqualified_id): Add a new parameter
>>     and check it for the literal diagnostic.
>
>
> As discussed on irc, we can indeed do better. With this approach, we look at function declarations
> only, so using-declarations are automatically ok, and we allow friend declarations (that are not
> definitions) and local declarations. Tested locally/partially on Linux-x64, will test with the full suite
> if this is ok. On that front.. ..where can this land? This isn't a regression, but it's certainly a long-standing
> annoyance, but mostly only for -Werror users. I can argue it both ways.

> +   if (suffix[0] != '_' && !in_system_header_at (input_location)

This should use DECL_SOURCE_LOCATION (decl) rather than
input_location.  With that change, this seems safe enough for 8.

Jason


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]