summaryrefslogtreecommitdiff
path: root/lexer.c
diff options
context:
space:
mode:
Diffstat (limited to 'lexer.c')
-rw-r--r--lexer.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lexer.c b/lexer.c
index dd97785..e45f949 100644
--- a/lexer.c
+++ b/lexer.c
@@ -40,7 +40,6 @@ static unsigned int one_wide_tok(const char *s)
static unsigned int two_wide_tok(const char *s)
{
switch (PAIR(s[0], s[1])) {
- case PAIR('+', '+'): return TOK_INCREMENT;
case PAIR('=', '='): return TOK_COMP_EQ;
case PAIR('!', '='): return TOK_COMP_NEQ;
case PAIR('/', '/'): return TOK_COMMENT;