remove incorrect doubled semicolon

This commit is contained in:
David Rose 2002-05-15 23:42:57 +00:00
parent 8ec48ecbda
commit bf8e7a911f

View File

@ -2186,7 +2186,7 @@ no_angle_bracket_const_expr:
} }
| no_angle_bracket_const_expr '[' const_expr ']' | no_angle_bracket_const_expr '[' const_expr ']'
{ {
$$ = new CPPExpression('[', $1, $3);; $$ = new CPPExpression('[', $1, $3);
} }
| no_angle_bracket_const_expr '(' const_expr_comma ')' | no_angle_bracket_const_expr '(' const_expr_comma ')'
{ {