Skip to content

Commit 3982b06

Browse files
committed
fix clippy warnings
1 parent 1999f11 commit 3982b06

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/erg_compiler/context/eval.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1862,8 +1862,7 @@ impl Context {
18621862
};
18631863
self.eval_bin_tp(op, lhs, rhs)
18641864
}
1865-
(l, r) => feature_error!(self, Location::Unknown, &format!("{l} {op} {r}"))
1866-
.map_err(Into::into),
1865+
(l, r) => feature_error!(self, Location::Unknown, &format!("{l} {op} {r}")),
18671866
}
18681867
}
18691868

0 commit comments

Comments
 (0)