summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lexer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lexer.h b/lexer.h
index 62ee9c2..24fb22d 100644
--- a/lexer.h
+++ b/lexer.h
@@ -39,7 +39,9 @@ enum token_type {
LOG_PIPE,
PIPE_EQ,
DIV,
- DIV_EQ, // comments too
+ DIV_EQ,
+ MOD,
+ MOD_EQ,
LT,
GT,
LEQ,
@@ -48,8 +50,6 @@ enum token_type {
SHR_EQ,
SHL,
SHL_EQ
- /* more to come */
- // ->, everything that can precede = (multi-symbols)
};
typedef unsigned long long intlit_t;