Skip to content

Commit

Permalink
Fix broken reference to kind enum
Browse files Browse the repository at this point in the history
  • Loading branch information
slyubomirsky committed Jan 25, 2019
1 parent 99f6591 commit 86b1ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/relay/pass/to_anf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ class Fill : ExprFunctor<Expr(const Expr&, const Var&)> {
}

Expr VisitExpr(const Expr& e) {
Var v = VarNode::make(std::string("x"), IncompleteTypeNode::make(TypeVarNode::kType));
Var v = VarNode::make(std::string("x"), IncompleteTypeNode::make(Kind::kType));
return this->VisitExpr(e, v);
}

Expand Down

0 comments on commit 86b1ea8

Please sign in to comment.