Commit f2d5277e authored by Marius Wachtler's avatar Marius Wachtler

PrintVisitor::visit_repr: return true as suggested in the code review

parent 30738360
......@@ -1117,7 +1117,7 @@ bool PrintVisitor::visit_repr(AST_Repr *node) {
printf("`");
node->value->accept(this);
printf("`");
return false;
return true;
}
bool PrintVisitor::visit_return(AST_Return *node) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment