mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 12:12:39 +00:00
Apply 'make format'
This commit is contained in:
parent
016278a759
commit
cd201f8eb8
@ -224,7 +224,8 @@ void FileLine::lineDirective(const char* textp, int& enterExitRef) {
|
||||
if (0 == strncmp(ln, "`__LINE__", strlen("`__LINE__"))) {
|
||||
// Special case - see docs - don't change other than accounting for `line itself
|
||||
lineno(lineno() + 1);
|
||||
} if (std::isdigit(*ln)) {
|
||||
}
|
||||
if (std::isdigit(*ln)) {
|
||||
lineno(std::atoi(ln));
|
||||
} else {
|
||||
fail = true;
|
||||
|
Loading…
Reference in New Issue
Block a user