* parser.c (cp_parser_postfix_expression): Adding missing break;.
From-SVN: r241509
This commit is contained in:
parent
ad6922b03b
commit
bc352be13c
2 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
2016-10-25 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* parser.c (cp_parser_postfix_expression): Adding missing break;.
|
||||
|
||||
* cp-tree.h (finish_builtin_launder): Declare.
|
||||
* parser.c (cp_parser_postfix_expression): Handle RID_BUILTIN_LAUNDER.
|
||||
* semantics.c (finish_builtin_launder): New function.
|
||||
|
|
|
@ -6655,6 +6655,7 @@ cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p,
|
|||
default:
|
||||
gcc_unreachable ();
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
|
|
Loading…
Add table
Reference in a new issue