Explorar el Código

Update compiler.h

blueloveTH hace 3 años
padre
commit
2c111cd563
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      src/compiler.h

+ 0 - 1
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;
                 }