From ea6306c7b7cace30efad9582be9d3c50167c91aa Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Wed, 21 Nov 2018 17:42:34 +0100 Subject: [PATCH] re PR c++/87393 (gcc/cp/parser.c:13967:37:Unused Entity Issue: expression result unused: -Wunused-value since r251026) PR c++/87393 * parser.c (cp_parser_linkage_specification): Remove useless dereference of the consume_open method result. From-SVN: r266347 --- gcc/cp/ChangeLog | 6 ++++++ gcc/cp/parser.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index a8e0544..0da294c 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2018-11-21 Jakub Jelinek + + PR c++/87393 + * parser.c (cp_parser_linkage_specification): Remove useless + dereference of the consume_open method result. + 2018-11-20 Martin Sebor * cp-tree.h (cp_check_const_attributes): Declare. diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 0617f56..09b2b00 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -14223,7 +14223,7 @@ cp_parser_linkage_specification (cp_parser* parser) /* Consume the `{' token. */ matching_braces braces; - braces.consume_open (parser)->location; + braces.consume_open (parser); /* Parse the declarations. */ cp_parser_declaration_seq_opt (parser); /* Look for the closing `}'. */ -- 2.7.4