From: Wolfgang Bumiller Date: Sat, 11 May 2013 20:05:30 +0000 (+0200) Subject: first step to getting rid of those unions we don't use anyway X-Git-Tag: v0.3.0~151^2~48 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=ef6e2bd5838cfd0935a230805e22591158dfc3bc first step to getting rid of those unions we don't use anyway --- diff --git a/ast.h b/ast.h index 98ad792..f18c73e 100644 --- a/ast.h +++ b/ast.h @@ -683,14 +683,6 @@ bool ast_generate_accessors(ast_value *asvalue, ir_builder *ir); union ast_expression_u { ast_expression_common expression; - - ast_value value; - ast_binary binary; - ast_block block; - ast_ternary ternary; - ast_ifthen ifthen; - ast_store store; - ast_entfield entfield; }; /* Node union @@ -698,7 +690,6 @@ union ast_expression_u union ast_node_u { ast_node_common node; - ast_expression expression; }; #endif