Browse Source

remove incorrect doubled semicolon

David Rose 23 năm trước cách đây
mục cha
commit
bf8e7a911f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 ')'
 {