Skip to content

Commit 7413bf8

Browse files
committed
Dogfood
1 parent 94da454 commit 7413bf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/operators/arithmetic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ impl<'tcx> LateLintPass<'tcx> for Arithmetic {
125125
}
126126
match &expr.kind {
127127
hir::ExprKind::Binary(op, lhs, rhs) | hir::ExprKind::AssignOp(op, lhs, rhs) => {
128-
self.manage_bin_ops(cx, expr, op, lhs, rhs)
128+
self.manage_bin_ops(cx, expr, op, lhs, rhs);
129129
},
130130
hir::ExprKind::Unary(hir::UnOp::Neg, _) => {
131131
if constant_simple(cx, cx.typeck_results(), expr).is_none() {

0 commit comments

Comments
 (0)