diff options
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/main.h b/src/main.h index a13866657..28eb64297 100644 --- a/src/main.h +++ b/src/main.h @@ -56,17 +56,6 @@ enum script_type { SCRIPT_MESSAGE, }; -/** - * Logic expression - */ -struct expression { - enum { EXPR_OPERAND, EXPR_OPERATION } type; /**< expression type */ - union { - void *operand; - char operation; - } content; /**< union for storing operand or operation code */ - struct expression *next; /**< chain link */ -}; /** * Worker process structure |