]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.h
Removed params from ast_function again. It really is superfluous to copy them, just...
[xonotic/gmqcc.git] / ast.h
diff --git a/ast.h b/ast.h
index 26edec91e791c5a3577316c99151d18eb696ad8d..8ae190d2ff1fb70b700a758760c08a885ed876ae 100644 (file)
--- a/ast.h
+++ b/ast.h
@@ -367,7 +367,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 */
@@ -378,7 +377,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);