mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Incorrect size of binop_preq_req array.
This commit is contained in:
@@ -24,7 +24,7 @@ static inline void expr_set_as_const_list(Expr *expr, ConstInitializer *list)
|
||||
expr->const_expr.list = list;
|
||||
}
|
||||
|
||||
int BINOP_PREC_REQ[BINARYOP_LAST] =
|
||||
int BINOP_PREC_REQ[BINARYOP_LAST + 1] =
|
||||
{
|
||||
// bitwise operations
|
||||
[BINARYOP_BIT_OR] = 1,
|
||||
|
||||
Reference in New Issue
Block a user