summaryrefslogtreecommitdiff
path: root/src/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ast.h b/src/ast.h
index bdace51..69fc918 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -54,7 +54,8 @@ typedef enum ast_binary_operation_kind_t
AST_BINOP_ADITION,
AST_BINOP_SUBTRACTION,
AST_BINOP_MULTIPLICATION,
- AST_BINOP_DIVISION
+ AST_BINOP_DIVISION,
+ AST_BINOP_N
} ast_binary_operation_kind_t;
typedef struct ast_binary_operation_t