Skip to content

Commit 5ae7da6

Browse files
committed
lint fixes
1 parent 84580c3 commit 5ae7da6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/relax/transform/expand_tuple_arguments.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,11 @@ Optional<Function> ExpandParams(Function func) {
7979

8080
class TupleExpander : public ExprMutator {
8181
public:
82-
TupleExpander(PMap<GlobalVar, GlobalVar> callees) : replacements_(callees) {}
82+
explicit TupleExpander(PMap<GlobalVar, GlobalVar> callees) : replacements_(callees) {}
8383

8484
using ExprMutator::VisitExpr_;
8585

8686
Expr VisitExpr_(const CallNode* op) override {
87-
// TODO: Recursive expansion
8887
auto node = Downcast<Call>(ExprMutator::VisitExpr_(op));
8988

9089
if (auto gvar = node->op.as<GlobalVar>()) {

0 commit comments

Comments
 (0)