]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.h
Merge branch 'master' into blub/bc3
[xonotic/gmqcc.git] / ast.h
diff --git a/ast.h b/ast.h
index 1f448bc17c4865b3a2e67437c725fb7e0ec24fa9..0023a83d29f38def5cec5579e0558013f85cff9b 100644 (file)
--- a/ast.h
+++ b/ast.h
@@ -369,7 +369,6 @@ struct ast_function_s
      * to generate ast_calls, and ast_call contains the parameter values
      * used in that call.
      */
-    MEM_VECTOR_MAKE(ast_value*, params);
 };
 ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype);
 /* This will NOT delete the underlying ast_value */
@@ -380,7 +379,6 @@ void ast_function_delete(ast_function*);
 const char* ast_function_label(ast_function*, const char *prefix);
 
 MEM_VECTOR_PROTO(ast_function, ast_block*, blocks);
-MEM_VECTOR_PROTO(ast_function, ast_value*, params);
 
 bool ast_function_codegen(ast_function *self, ir_builder *builder);