Skip to content

Commit

Permalink
fix lint (apache#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarisaKirisame authored and jroesch committed Aug 16, 2018
1 parent c664a15 commit 2d8eeda
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion relay/src/relay/evaluator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ Value Evaluator::VisitExpr_(const ProductLitNode* op) {
if (op->fields.size() != 2) {
throw EvalError("Unsupported Size");
}
return Value(ProductValueNode::make({Eval(Expr(op->fields[0].node_)), Eval(Expr(op->fields[1].node_))}));
return Value(ProductValueNode::make({
Eval(Expr(op->fields[0].node_)),
Eval(Expr(op->fields[1].node_))}));
}

Value Evaluator::VisitExpr_(const CastNode* op) {
Expand Down

0 comments on commit 2d8eeda

Please sign in to comment.