Skip to content

Commit

Permalink
Remove annoying debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
xtofalex committed Jul 10, 2023
1 parent 60e79b1 commit 37667df
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/VerilogScanner.ll
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::string>(yytext+1);
return token::BASE_TK;
}
Expand Down

0 comments on commit 37667df

Please sign in to comment.