mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 06:02:22 +00:00
fix wrong const qualifier
This commit is contained in:
parent
d60a76abd1
commit
b61ae53ecd
1 changed files with 1 additions and 1 deletions
2
ast.c
2
ast.c
|
@ -569,7 +569,7 @@ void ast_member_delete(ast_member *self)
|
|||
|
||||
ast_array_index* ast_array_index_new(lex_ctx ctx, ast_expression *array, ast_expression *index)
|
||||
{
|
||||
const ast_expression *outtype;
|
||||
ast_expression *outtype;
|
||||
ast_instantiate(ast_array_index, ctx, ast_array_index_delete);
|
||||
|
||||
outtype = array->expression.next;
|
||||
|
|
Loading…
Reference in a new issue