@@ -425,8 +425,8 @@ fn resolve_lifetimes<'tcx>(
425
425
fn krate < ' tcx > ( tcx : TyCtxt < ' _ , ' tcx , ' tcx > ) -> NamedRegionMap {
426
426
let krate = tcx. hir . krate ( ) ;
427
427
let mut map = NamedRegionMap {
428
- defs : NodeMap ( ) ,
429
- late_bound : NodeSet ( ) ,
428
+ defs : Default :: default ( ) ,
429
+ late_bound : Default :: default ( ) ,
430
430
object_lifetime_defaults : compute_object_lifetime_defaults ( tcx) ,
431
431
} ;
432
432
{
@@ -437,8 +437,8 @@ fn krate<'tcx>(tcx: TyCtxt<'_, 'tcx, 'tcx>) -> NamedRegionMap {
437
437
trait_ref_hack : false ,
438
438
is_in_fn_syntax : false ,
439
439
labels_in_fn : vec ! [ ] ,
440
- xcrate_object_lifetime_defaults : DefIdMap ( ) ,
441
- lifetime_uses : & mut DefIdMap ( ) ,
440
+ xcrate_object_lifetime_defaults : Default :: default ( ) ,
441
+ lifetime_uses : & mut Default :: default ( ) ,
442
442
} ;
443
443
for ( _, item) in & krate. items {
444
444
visitor. visit_item ( item) ;
@@ -1278,7 +1278,7 @@ fn extract_labels(ctxt: &mut LifetimeContext<'_, '_>, body: &hir::Body) {
1278
1278
fn compute_object_lifetime_defaults (
1279
1279
tcx : TyCtxt < ' _ , ' _ , ' _ > ,
1280
1280
) -> NodeMap < Vec < ObjectLifetimeDefault > > {
1281
- let mut map = NodeMap ( ) ;
1281
+ let mut map = NodeMap :: default ( ) ;
1282
1282
for item in tcx. hir . krate ( ) . items . values ( ) {
1283
1283
match item. node {
1284
1284
hir:: ItemKind :: Struct ( _, ref generics)
@@ -1432,7 +1432,7 @@ impl<'a, 'tcx> LifetimeContext<'a, 'tcx> {
1432
1432
} = self ;
1433
1433
let labels_in_fn = replace ( & mut self . labels_in_fn , vec ! [ ] ) ;
1434
1434
let xcrate_object_lifetime_defaults =
1435
- replace ( & mut self . xcrate_object_lifetime_defaults , DefIdMap ( ) ) ;
1435
+ replace ( & mut self . xcrate_object_lifetime_defaults , DefIdMap :: default ( ) ) ;
1436
1436
let mut this = LifetimeContext {
1437
1437
tcx : * tcx,
1438
1438
map : map,
@@ -2741,9 +2741,7 @@ fn insert_late_bound_lifetimes(
2741
2741
constrained_by_input. visit_ty ( arg_ty) ;
2742
2742
}
2743
2743
2744
- let mut appears_in_output = AllCollector {
2745
- regions : Default :: default ( ) ,
2746
- } ;
2744
+ let mut appears_in_output = AllCollector :: default ( ) ;
2747
2745
intravisit:: walk_fn_ret_ty ( & mut appears_in_output, & decl. output ) ;
2748
2746
2749
2747
debug ! (
@@ -2755,9 +2753,7 @@ fn insert_late_bound_lifetimes(
2755
2753
//
2756
2754
// Subtle point: because we disallow nested bindings, we can just
2757
2755
// ignore binders here and scrape up all names we see.
2758
- let mut appears_in_where_clause = AllCollector {
2759
- regions : Default :: default ( ) ,
2760
- } ;
2756
+ let mut appears_in_where_clause = AllCollector :: default ( ) ;
2761
2757
appears_in_where_clause. visit_generics ( generics) ;
2762
2758
2763
2759
for param in & generics. params {
@@ -2854,6 +2850,7 @@ fn insert_late_bound_lifetimes(
2854
2850
}
2855
2851
}
2856
2852
2853
+ #[ derive( Default ) ]
2857
2854
struct AllCollector {
2858
2855
regions : FxHashSet < hir:: LifetimeName > ,
2859
2856
}
0 commit comments