diff options
| author | Caio <c410.f3r@gmail.com> | 2023-08-24 13:34:36 -0300 |
|---|---|---|
| committer | Caio <c410.f3r@gmail.com> | 2023-08-24 13:34:36 -0300 |
| commit | d802ab28de8c7e8095fd00fe6cec48ed809ad3b3 (patch) | |
| tree | 635b88ca59e51320779c31d08ccf77c618b5d68f | |
| parent | 2faa43c8b455bd66a0d93f9af5beac4fb7698234 (diff) | |
| download | rust-d802ab28de8c7e8095fd00fe6cec48ed809ad3b3.tar.gz rust-d802ab28de8c7e8095fd00fe6cec48ed809ad3b3.zip | |
Dogfood
| -rw-r--r-- | clippy_lints/src/operators/arithmetic_side_effects.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/operators/arithmetic_side_effects.rs b/clippy_lints/src/operators/arithmetic_side_effects.rs index 377b56fadaa..edd18b86b5d 100644 --- a/clippy_lints/src/operators/arithmetic_side_effects.rs +++ b/clippy_lints/src/operators/arithmetic_side_effects.rs @@ -121,7 +121,7 @@ impl ArithmeticSideEffects { if match_type(cx, lhs_ty, SATURATING) || match_type(cx, lhs_ty, WRAPPING) { return true; } - return false; + false } // For example, 8i32 or &i64::MAX. |
