From b467a804caf46bd07241766a8f3d08ede28840c3 Mon Sep 17 00:00:00 2001 From: Username404 Date: Fri, 26 Nov 2021 21:57:31 +0100 Subject: [PATCH] Fix the indentation of a line modified by the previous commit --- src/headers/parsing/Parser.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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});