mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-22 02:31:28 +00:00
removing an unused variable
This commit is contained in:
parent
1559dedfd9
commit
f51ad96620
1 changed files with 1 additions and 1 deletions
2
ast.c
2
ast.c
|
@ -940,7 +940,7 @@ bool ast_entfield_codegen(ast_entfield *self, ast_function *func, bool lvalue, i
|
|||
bool ast_member_codegen(ast_member *self, ast_function *func, bool lvalue, ir_value **out)
|
||||
{
|
||||
ast_expression_codegen *cgen;
|
||||
ir_value *vec, *field;
|
||||
ir_value *vec;
|
||||
|
||||
cgen = self->owner->expression.codegen;
|
||||
if (!(*cgen)((ast_expression*)(self->owner), func, true, &vec))
|
||||
|
|
Loading…
Reference in a new issue