]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/clippy_lints/src/float_equality_without_abs.rs
Auto merge of #81156 - DrMeepster:read_buf, r=joshtriplett
[rust.git] / src / tools / clippy / clippy_lints / src / float_equality_without_abs.rs
index c33d80b8e8ef9aee958b93d3819a78829d3775d9..ca8886228de264a042c24c89e2f9688d4c15bb9f 100644 (file)
@@ -37,6 +37,7 @@
     ///     (a - b).abs() < f32::EPSILON
     /// }
     /// ```
+    #[clippy::version = "1.48.0"]
     pub FLOAT_EQUALITY_WITHOUT_ABS,
     suspicious,
     "float equality check without `.abs()`"