about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hansch <dev@phansch.net>2019-03-13 06:51:57 +0100
committerPhilipp Hansch <dev@phansch.net>2019-03-13 06:51:57 +0100
commitbf86c1b989f9dd79f8f58343ac5bbe8cdfd22236 (patch)
treeea6b466e38822ffe33f4bd26329bb4673b85f5f4
parenta4572581328852efaae37bd761c896fa154c048b (diff)
downloadrust-bf86c1b989f9dd79f8f58343ac5bbe8cdfd22236.tar.gz
rust-bf86c1b989f9dd79f8f58343ac5bbe8cdfd22236.zip
cargo fmt
-rw-r--r--clippy_lints/src/redundant_clone.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/clippy_lints/src/redundant_clone.rs b/clippy_lints/src/redundant_clone.rs
index bb90bdf33d8..9a17e593fdf 100644
--- a/clippy_lints/src/redundant_clone.rs
+++ b/clippy_lints/src/redundant_clone.rs
@@ -1,6 +1,6 @@
 use crate::utils::{
-    has_drop, in_macro, is_copy, match_def_path, match_type, paths, snippet_opt, span_lint_hir,
-    span_lint_hir_and_then, walk_ptrs_ty_depth,
+    has_drop, in_macro, is_copy, match_def_path, match_type, paths, snippet_opt, span_lint_hir, span_lint_hir_and_then,
+    walk_ptrs_ty_depth,
 };
 use if_chain::if_chain;
 use matches::matches;