X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=ast.h;h=8ae190d2ff1fb70b700a758760c08a885ed876ae;hp=26edec91e791c5a3577316c99151d18eb696ad8d;hb=4255b143b01b407df70cd6e1edeb02f0d3526fba;hpb=d4c408b4bd23e1516c6800cfd8e890dcc24c6bd6 diff --git a/ast.h b/ast.h index 26edec9..8ae190d 100644 --- 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);