Fixed Travis
This commit is contained in:
parent
c88297c971
commit
507727e07f
|
@ -535,7 +535,7 @@ static void compileTerm(Token *&tok, AST_state& state)
|
||||||
compileUnaryOp(tok, state, compileExpression);
|
compileUnaryOp(tok, state, compileExpression);
|
||||||
else
|
else
|
||||||
compileBinOp(tok, state, compileExpression);
|
compileBinOp(tok, state, compileExpression);
|
||||||
if (Token::Match(tok, "}"))
|
if (Token::simpleMatch(tok, "}"))
|
||||||
tok = tok->next();
|
tok = tok->next();
|
||||||
} else if (!state.cpp || !Token::Match(tok, "new|delete %name%|*|&|::|(|[")) {
|
} else if (!state.cpp || !Token::Match(tok, "new|delete %name%|*|&|::|(|[")) {
|
||||||
while (tok->next() && tok->next()->isName())
|
while (tok->next() && tok->next()->isName())
|
||||||
|
|
Loading…
Reference in New Issue