PR c++/87393
* parser.c (cp_parser_linkage_specification): Remove useless
dereference of the consume_open method result.
From-SVN: r266347
+2018-11-21 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/87393
+ * parser.c (cp_parser_linkage_specification): Remove useless
+ dereference of the consume_open method result.
+
2018-11-20 Martin Sebor <msebor@redhat.com>
* cp-tree.h (cp_check_const_attributes): Declare.
/* 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 `}'. */