* parser.c (cp_parser_linkage_specification): Remove useless
dereference of the consume_open method result.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@266347
138bc75d-0d04-0410-961f-
82ee72b054a4
+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 `}'. */