Fix unused import warning

This commit is contained in:
mcarton 2016-10-22 16:16:38 +02:00
parent 5d96558f9f
commit 6960c506ef
No known key found for this signature in database
GPG key ID: 5E427C794CBA45E8

View file

@ -4,7 +4,7 @@ use rustc::lint::*;
use rustc::ty::TypeVariants;
use syntax::ast::LitKind;
use utils::paths;
use utils::{is_expn_of, match_def_path, match_path, match_type, resolve_node, span_lint, walk_ptrs_ty};
use utils::{is_expn_of, match_def_path, match_type, resolve_node, span_lint, walk_ptrs_ty};
/// **What it does:** Checks for the use of `format!("string literal with no
/// argument")` and `format!("{}", foo)` where `foo` is a string.