diff --git a/src/headers/parsing/Parser.hpp b/src/headers/parsing/Parser.hpp index d72f727..930c61b 100644 --- a/src/headers/parsing/Parser.hpp +++ b/src/headers/parsing/Parser.hpp @@ -36,14 +36,12 @@ namespace Parser { parseTree << Class(next.toktext); ++i; } else throw ParsingException((not next.toktext.empty()) ? '"' + next.toktext + "\" is not a valid class identifier" : "A class identifier is required", next.line); } else { - if ((lexed.size() - i) > 2) { - bool isFinalDefine = nextAre({TAG, DEFINE}); - if (isFinalDefine || next.toktype == DEFINE) { - parseTree << Define(isFinalDefine, current.toktext); - i += 1 + isFinalDefine; - } else { - parseTree << Reference(current.toktext); - } + bool isFinalDefine = nextAre({TAG, DEFINE}); + if (isFinalDefine || next.toktype == DEFINE) { + parseTree << Define(isFinalDefine, current.toktext); + i += 1 + isFinalDefine; + } else { + parseTree << Reference(current.toktext); } } }