Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MarisaKirisame committed Jul 17, 2019
1 parent 62a07ef commit 818728c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/relay/pass/type_solver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,10 @@ class TypeSolver::Unifier : public TypeFunctor<Type(const Type&, const Type&)> {
subst_map.Set(op->type_params[i], IncompleteTypeNode::make(kType));
}

FuncType ft = FuncTypeNode::make(op->arg_types, op->ret_type, ft_type_params, op->type_constraints);
FuncType ft = FuncTypeNode::make(op->arg_types,
op->ret_type,
ft_type_params,
op->type_constraints);
auto ft1 = Downcast<FuncType>(Bind(ft, subst_map));
auto ft2 = GetRef<FuncType>(ftn);

Expand Down

0 comments on commit 818728c

Please sign in to comment.