]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/clippy_lints/src/zero_div_zero.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[rust.git] / src / tools / clippy / clippy_lints / src / zero_div_zero.rs
index b29ced28ac491dd662c0b5fe595681d69bea2307..e0746ce4d8121b115f1da360d5b2e9756aaa3c06 100644 (file)
@@ -32,7 +32,7 @@ fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
         // check for instances of 0.0/0.0
         if_chain! {
             if let ExprKind::Binary(ref op, left, right) = expr.kind;
-            if let BinOpKind::Div = op.node;
+            if op.node == BinOpKind::Div;
             // TODO - constant_simple does not fold many operations involving floats.
             // That's probably fine for this lint - it's pretty unlikely that someone would
             // do something like 0.0/(2.0 - 2.0), but it would be nice to warn on that case too.