diff --git a/src/headers/parsing/Parser.hpp b/src/headers/parsing/Parser.hpp index 5c331ce..99875f2 100644 --- a/src/headers/parsing/Parser.hpp +++ b/src/headers/parsing/Parser.hpp @@ -41,8 +41,7 @@ namespace Parser { parseTree << Class(next.toktext); ++i; } else { const bool isNotBlank = (not (next.toktext.empty() or next.toktype == tok::EOF_)); - parsingError(next, isNotBlank ? " is not a valid class identifier" - : "A class identifier is required", isNotBlank); + parsingError(next, isNotBlank ? " is not a valid class identifier" : "A class identifier is required", isNotBlank); } } else { bool isFinalDefine = nextAre({TAG, DEFINE});