Fix the indentation of a line modified by the previous commit
This commit is contained in:
parent
173ed5d6c3
commit
158021cf68
@ -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
Block a user