Apply 'make format'

This commit is contained in:
github action 2023-09-18 01:44:43 +00:00
parent 016278a759
commit cd201f8eb8

View File

@ -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;