Fix the indentation of a line modified by the previous commit

This commit is contained in:
Username404 2021-11-26 21:57:31 +01:00
parent 6d33f05021
commit b467a804ca
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 2 deletions

View File

@ -41,8 +41,7 @@ namespace Parser {
parseTree << Class(next.toktext); ++i; parseTree << Class(next.toktext); ++i;
} else { } else {
const bool isNotBlank = (not (next.toktext.empty() or next.toktype == tok::EOF_)); const bool isNotBlank = (not (next.toktext.empty() or next.toktype == tok::EOF_));
parsingError(next, isNotBlank ? " is not a valid class identifier" parsingError(next, isNotBlank ? " is not a valid class identifier" : "A class identifier is required", isNotBlank);
: "A class identifier is required", isNotBlank);
} }
} else { } else {
bool isFinalDefine = nextAre({TAG, DEFINE}); bool isFinalDefine = nextAre({TAG, DEFINE});