diff --git a/src/compiler.h b/src/compiler.h index dba04388..63fbde37 100644 --- a/src/compiler.h +++ b/src/compiler.h @@ -241,7 +241,6 @@ private: case '-': { if(parser->matchchar('=')) parser->set_next_token(TK("-=")); else if(parser->matchchar('>')) parser->set_next_token(TK("->")); - else if(parser->matchchar('-')) parser->set_next_token(TK("--")); else parser->set_next_token(TK("-")); return; }