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 28, 2019
1 parent 201da68 commit 430b27d
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 430b27d

Please sign in to comment.