Style fixes.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-11-08 15:44:58 +01:00
parent 5fb64e12e1
commit bfb47d9b5f
3 changed files with 19 additions and 26 deletions

View File

@@ -867,7 +867,7 @@ namespace MalachScript::Parser {
return true;
}
bool Parser::ParseExprStat(const ParsedStatement*& out, const LexToken*& currentToken) {
if (!ParseAssign(out, currentToken)){
if (!ParseAssign(out, currentToken)) {
return false;
}
EXPECT_TOKEN(currentToken, SemicolonSymbol);