Use LPAR instead of a character in a condition of Parser.hpp

Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
Username404 2022-03-17 15:49:01 +01:00
parent 272323d091
commit bee9917947
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ namespace Parser {
})
));
i += increment;
} else if (next.toktype == '(') {
} else if (next.toktype == LPAR) {
parseTree << Call(current.toktext);
} else
parseTree << Reference(current.toktext);