]> git.lizzy.rs Git - rust.git/commitdiff
Rustfmtup to 0.7.1
authorPascal Hertleif <killercup@gmail.com>
Sat, 21 Jan 2017 17:04:59 +0000 (18:04 +0100)
committerPascal Hertleif <killercup@gmail.com>
Sat, 21 Jan 2017 17:04:59 +0000 (18:04 +0100)
clippy_lints/src/map_clone.rs

index 76ffd89c64ec30217f8d1108664bce126be8f814..9dff7e8c8ff54b3525053a31f7a329e41b8823ee 100644 (file)
@@ -1,8 +1,8 @@
 use rustc::lint::*;
 use rustc::hir::*;
 use syntax::ast;
-use utils::{is_adjusted, match_path, match_trait_method, match_type, remove_blocks, paths, snippet,
-            span_help_and_lint, walk_ptrs_ty, walk_ptrs_ty_depth, iter_input_pats};
+use utils::{is_adjusted, match_path, match_trait_method, match_type, remove_blocks, paths, snippet, span_help_and_lint,
+            walk_ptrs_ty, walk_ptrs_ty_depth, iter_input_pats};
 
 /// **What it does:** Checks for mapping `clone()` over an iterator.
 ///