Selaa lähdekoodia

remove incorrect doubled semicolon

David Rose 23 vuotta sitten
vanhempi
sitoutus
bf8e7a911f
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      dtool/src/cppparser/cppBison.yxx

+ 1 - 1
dtool/src/cppparser/cppBison.yxx

@@ -2186,7 +2186,7 @@ no_angle_bracket_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 ')'
 {