diff options
Diffstat (limited to 'components/plugins/utils.rs')
-rw-r--r-- | components/plugins/utils.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/plugins/utils.rs b/components/plugins/utils.rs index e7f4c36cde2..9d98f568a6c 100644 --- a/components/plugins/utils.rs +++ b/components/plugins/utils.rs @@ -2,11 +2,12 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +use rustc::ast_map; use rustc::lint::Context; use rustc::middle::{ty, def}; use syntax::ptr::P; -use syntax::{ast, ast_map}; +use syntax::ast; use syntax::ast::{TyPath, Path, AngleBracketedParameters, PathSegment, Ty}; use syntax::attr::mark_used; |