Skip to content

Commit

Permalink
remove throw from coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
xtofalex committed Sep 17, 2024
1 parent b3d2fba commit 35cb3c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VerilogParser.yy
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ constant_expression: constant_primary {
$$.valid_ = true;
$$.value_ = number;
} else {
throw VerilogException("Only constant number expression are supported");
throw VerilogException("Only constant number expression are supported"); //LCOV_EXCL_LINE
}
}

Expand Down

0 comments on commit 35cb3c2

Please sign in to comment.