diff options
author | Lars Bergstrom <lars@lars.com> | 2015-10-02 13:50:11 -0500 |
---|---|---|
committer | Lars Bergstrom <lars@lars.com> | 2015-10-02 13:50:11 -0500 |
commit | 48b3259c902e77d21057fb6bcbf2da11bfd46212 (patch) | |
tree | 0420caed3a289f39b3bb60e2e5623ae6d9e42c52 /components/plugins/lints/inheritance_integrity.rs | |
parent | ba2714f4f607da77bd7200f88cfa16c1d10da9cd (diff) | |
download | servo-48b3259c902e77d21057fb6bcbf2da11bfd46212.tar.gz servo-48b3259c902e77d21057fb6bcbf2da11bfd46212.zip |
Rust upgrade to nightly 20151002
Diffstat (limited to 'components/plugins/lints/inheritance_integrity.rs')
-rw-r--r-- | components/plugins/lints/inheritance_integrity.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/plugins/lints/inheritance_integrity.rs b/components/plugins/lints/inheritance_integrity.rs index e1845b0a786..4f5770948aa 100644 --- a/components/plugins/lints/inheritance_integrity.rs +++ b/components/plugins/lints/inheritance_integrity.rs @@ -4,7 +4,6 @@ use rustc::lint::{LateContext, LintPass, LintArray, Level, LateLintPass, LintContext}; use rustc::middle::def; -use rustc::middle::def_id::DefId; use rustc_front::hir; use syntax::ast; use utils::match_lang_ty; @@ -25,11 +24,11 @@ impl LintPass for InheritancePass { } impl LateLintPass for InheritancePass { - fn check_struct_def(&mut self, cx: &LateContext, def: &hir::StructDef, _i: ast::Ident, + fn check_struct_def(&mut self, cx: &LateContext, def: &hir::StructDef, _n: ast::Name, _gen: &hir::Generics, id: ast::NodeId) { // Lints are run post expansion, so it's fine to use // #[_dom_struct_marker] here without also checking for #[dom_struct] - if cx.tcx.has_attr(DefId::local(id), "_dom_struct_marker") { + if cx.tcx.has_attr(cx.tcx.map.local_def_id(id), "_dom_struct_marker") { // Find the reflector, if any let reflector_span = def.fields.iter().enumerate() .find(|&(ctr, f)| { |