2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-03-07 16:57:17 +00:00
This commit is contained in:
Caio 2023-08-24 13:34:36 -03:00
parent 2faa43c8b4
commit d802ab28de

View file

@ -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.