diff options
| author | Cameron Steffen <cam.steffen94@gmail.com> | 2021-03-16 11:06:34 -0500 |
|---|---|---|
| committer | Cameron Steffen <cam.steffen94@gmail.com> | 2021-03-17 09:13:52 -0500 |
| commit | 0743e841f07b7c41f65187fbf71f90bb5dc71982 (patch) | |
| tree | 3867dad9fc14b36e76bf11a3312947603a7df066 /clippy_lints/src/float_equality_without_abs.rs | |
| parent | 8af28840d2b493897a54eb9a21e155c09e38f10f (diff) | |
| download | rust-0743e841f07b7c41f65187fbf71f90bb5dc71982.tar.gz rust-0743e841f07b7c41f65187fbf71f90bb5dc71982.zip | |
Don't re-export clippy_utils::*
Diffstat (limited to 'clippy_lints/src/float_equality_without_abs.rs')
| -rw-r--r-- | clippy_lints/src/float_equality_without_abs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/float_equality_without_abs.rs b/clippy_lints/src/float_equality_without_abs.rs index b3593d328cc..0c59db360f9 100644 --- a/clippy_lints/src/float_equality_without_abs.rs +++ b/clippy_lints/src/float_equality_without_abs.rs @@ -1,5 +1,5 @@ -use crate::utils::{match_def_path, paths, sugg}; use clippy_utils::diagnostics::span_lint_and_then; +use clippy_utils::{match_def_path, paths, sugg}; use if_chain::if_chain; use rustc_ast::util::parser::AssocOp; use rustc_errors::Applicability; |
