From: Wolfgang (Blub) Bumiller Date: Mon, 12 Nov 2012 23:11:07 +0000 (+0100) Subject: fix wrong const qualifier X-Git-Tag: 0.1~19^2~6 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b61ae53ecd15153e5d4e496568ec3518d39a6467;p=xonotic%2Fgmqcc.git fix wrong const qualifier --- 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;