mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-25 20:11:24 +00:00
Clang is so anal
This commit is contained in:
parent
8e8b3608fb
commit
c8413a9a04
1 changed files with 1 additions and 1 deletions
2
ast.c
2
ast.c
|
@ -529,7 +529,7 @@ ast_unary* ast_unary_new(lex_ctx_t ctx, int op,
|
|||
ast_unary *prev = (ast_unary*)((ast_unary*)expr)->operand;
|
||||
|
||||
/* Handle for double negation */
|
||||
if ((((ast_unary*)expr)->op == op))
|
||||
if (((ast_unary*)expr)->op == op)
|
||||
prev = (ast_unary*)((ast_unary*)expr)->operand;
|
||||
|
||||
if (ast_istype(prev, ast_unary)) {
|
||||
|
|
Loading…
Reference in a new issue