Fix the indentation of a line modified by the previous commit
This commit is contained in:
parent
6d33f05021
commit
b467a804ca
|
@ -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});
|
||||||
|
|
Loading…
Reference in New Issue