diff --git a/clippy_lints/src/loops.rs b/clippy_lints/src/loops.rs index ccd8be388..a070e824c 100644 --- a/clippy_lints/src/loops.rs +++ b/clippy_lints/src/loops.rs @@ -1657,7 +1657,7 @@ fn check_for_mutability(cx: &LateContext<'_, '_>, bound: &Expr) -> Option then { let def = cx.tables.qpath_def(qpath, bound.hir_id); if let Def::Local(node_id) = def { - let node_str = cx.tcx.hir().get(node_id); + let node_str = cx.tcx.hir().get_by_hir_id(node_id); if_chain! { if let Node::Binding(pat) = node_str; if let PatKind::Binding(bind_ann, ..) = pat.node; diff --git a/clippy_lints/src/misc.rs b/clippy_lints/src/misc.rs index a1e0f9d83..bd0b4bd45 100644 --- a/clippy_lints/src/misc.rs +++ b/clippy_lints/src/misc.rs @@ -612,7 +612,7 @@ fn in_attributes_expansion(expr: &Expr) -> bool { /// Tests whether `def` is a variable defined outside a macro. fn non_macro_local(cx: &LateContext<'_, '_>, def: &def::Def) -> bool { match *def { - def::Def::Local(id) | def::Def::Upvar(id, _, _) => !in_macro(cx.tcx.hir().span(id)), + def::Def::Local(id) | def::Def::Upvar(id, _, _) => !in_macro(cx.tcx.hir().span_by_hir_id(id)), _ => false, } }