]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
removing an unused variable
authorWolfgang (Blub) Bumiller <blub@speed.at>
Sat, 11 Aug 2012 13:41:37 +0000 (15:41 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Sat, 11 Aug 2012 13:41:37 +0000 (15:41 +0200)
ast.c

diff --git a/ast.c b/ast.c
index c19fad2656ba70d43a2d3d3b242c512548bc9ce4..4c90821639a0c4e695ccbfc3667d2f5093a63cba 100644 (file)
--- a/ast.c
+++ b/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))