From 37667dffb35a375b8404ca3b86cf92c8fcc01203 Mon Sep 17 00:00:00 2001 From: xtof Date: Mon, 10 Jul 2023 17:59:16 +0200 Subject: [PATCH] Remove annoying debug message --- src/VerilogScanner.ll | 1 - 1 file changed, 1 deletion(-) 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; }