@@ -4,13 +4,14 @@ use crate::utils::{
4
4
type_is_unsafe_function,
5
5
} ;
6
6
use matches:: matches;
7
- use rustc:: hir:: intravisit ;
7
+ use rustc:: hir:: map :: Map ;
8
8
use rustc:: impl_lint_pass;
9
9
use rustc:: lint:: { in_external_macro, LateContext , LateLintPass , LintArray , LintContext , LintPass } ;
10
10
use rustc:: ty:: { self , Ty } ;
11
11
use rustc_data_structures:: fx:: FxHashSet ;
12
12
use rustc_errors:: Applicability ;
13
13
use rustc_hir as hir;
14
+ use rustc_hir:: intravisit;
14
15
use rustc_hir:: { def:: Res , def_id:: DefId } ;
15
16
use rustc_session:: declare_tool_lint;
16
17
use rustc_span:: source_map:: Span ;
@@ -538,6 +539,8 @@ struct DerefVisitor<'a, 'tcx> {
538
539
}
539
540
540
541
impl < ' a , ' tcx > intravisit:: Visitor < ' tcx > for DerefVisitor < ' a , ' tcx > {
542
+ type Map = Map < ' tcx > ;
543
+
541
544
fn visit_expr ( & mut self , expr : & ' tcx hir:: Expr < ' _ > ) {
542
545
match expr. kind {
543
546
hir:: ExprKind :: Call ( ref f, args) => {
@@ -566,7 +569,7 @@ impl<'a, 'tcx> intravisit::Visitor<'tcx> for DerefVisitor<'a, 'tcx> {
566
569
intravisit:: walk_expr ( self , expr) ;
567
570
}
568
571
569
- fn nested_visit_map < ' this > ( & ' this mut self ) -> intravisit:: NestedVisitorMap < ' this , ' tcx > {
572
+ fn nested_visit_map ( & mut self ) -> intravisit:: NestedVisitorMap < ' _ , Self :: Map > {
570
573
intravisit:: NestedVisitorMap :: None
571
574
}
572
575
}
@@ -594,6 +597,8 @@ struct StaticMutVisitor<'a, 'tcx> {
594
597
}
595
598
596
599
impl < ' a , ' tcx > intravisit:: Visitor < ' tcx > for StaticMutVisitor < ' a , ' tcx > {
600
+ type Map = Map < ' tcx > ;
601
+
597
602
fn visit_expr ( & mut self , expr : & ' tcx hir:: Expr < ' _ > ) {
598
603
use hir:: ExprKind :: * ;
599
604
@@ -627,7 +632,7 @@ impl<'a, 'tcx> intravisit::Visitor<'tcx> for StaticMutVisitor<'a, 'tcx> {
627
632
}
628
633
}
629
634
630
- fn nested_visit_map < ' this > ( & ' this mut self ) -> intravisit:: NestedVisitorMap < ' this , ' tcx > {
635
+ fn nested_visit_map ( & mut self ) -> intravisit:: NestedVisitorMap < ' _ , Self :: Map > {
631
636
intravisit:: NestedVisitorMap :: None
632
637
}
633
638
}
0 commit comments