Skip to content
Snippets Groups Projects
Commit 5489c83d authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Visit the left child not of a binary expression.

parent c149046b
No related branches found
No related tags found
No related merge requests found
...@@ -235,9 +235,9 @@ bool ResolveExpression::visit(ExpressionListAST *) ...@@ -235,9 +235,9 @@ bool ResolveExpression::visit(ExpressionListAST *)
return false; return false;
} }
bool ResolveExpression::visit(BinaryExpressionAST *) bool ResolveExpression::visit(BinaryExpressionAST *ast)
{ {
// nothing to do. accept(ast->left_expression);
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment