@@ -1208,8 +1208,6 @@ pub struct Resolver<'ra, 'tcx> {
12081208 /// they are declared in the static array generated by proc_macro_harness.
12091209 proc_macros : Vec < NodeId > ,
12101210 confused_type_with_std_module : FxIndexMap < Span , Span > ,
1211- /// Whether lifetime elision was successful.
1212- lifetime_elision_allowed : FxHashSet < NodeId > ,
12131211
12141212 /// Names of items that were stripped out via cfg with their corresponding cfg meta item.
12151213 stripped_cfg_items : Vec < StrippedCfgItem < NodeId > > ,
@@ -1586,7 +1584,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
15861584 trait_impls : Default :: default ( ) ,
15871585 proc_macros : Default :: default ( ) ,
15881586 confused_type_with_std_module : Default :: default ( ) ,
1589- lifetime_elision_allowed : Default :: default ( ) ,
15901587 stripped_cfg_items : Default :: default ( ) ,
15911588 effective_visibilities : Default :: default ( ) ,
15921589 doc_link_resolutions : Default :: default ( ) ,
@@ -1706,7 +1703,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
17061703 extra_lifetime_params_map : self . extra_lifetime_params_map ,
17071704 next_node_id : self . next_node_id ,
17081705 trait_map : self . trait_map ,
1709- lifetime_elision_allowed : self . lifetime_elision_allowed ,
17101706 lint_buffer : Steal :: new ( self . lint_buffer ) ,
17111707 delegation_fn_sigs : self . delegation_fn_sigs ,
17121708 } ;
0 commit comments