Skip to content

Commit 86b1ea8

Browse files
committed
Fix broken reference to kind enum
1 parent 99f6591 commit 86b1ea8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/relay/pass/to_anf.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ class Fill : ExprFunctor<Expr(const Expr&, const Var&)> {
274274
}
275275

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

0 commit comments

Comments
 (0)