diff --git a/src/VerilogScanner.ll b/src/VerilogScanner.ll index 58ddb44..da5cc6e 100644 --- a/src/VerilogScanner.ll +++ b/src/VerilogScanner.ll @@ -143,7 +143,6 @@ assign { return token::ASSIGN_KW; } \'[sS]?[bodhBODH] { BEGIN(based_const); //we don't need the "'" first character and we are sure that yytext is 's?b|o|... - std::cerr << "LEX: " << std::string(yytext+1) << std::endl; yylval->build(yytext+1); return token::BASE_TK; }