From b61ae53ecd15153e5d4e496568ec3518d39a6467 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Tue, 13 Nov 2012 00:11:07 +0100 Subject: [PATCH] fix wrong const qualifier --- ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast.c b/ast.c index aa65da2..3f6c59e 100644 --- a/ast.c +++ b/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; -- 2.39.2