]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ast.h
ast_expression: params -> type_params
[xonotic/gmqcc.git] / ast.h
diff --git a/ast.h b/ast.h
index dcfffbafeee7d5fad6b56db53c9b7947fdb18b48..69e03929ac83220334ef8f4c8814bd29cf80b479 100644 (file)
--- a/ast.h
+++ b/ast.h
@@ -149,7 +149,7 @@ struct ast_expression : ast_node {
     ast_expression         *next;
     /* arrays get a member-count */
     size_t                  count;
-    std::vector<ast_value*> params;
+    std::vector<ast_value*> type_params;
 
     ast_flag_t              flags;
     /* void foo(string...) gets varparam set as a restriction