@@ -498,7 +498,7 @@ fn clean_generic_param_def<'tcx>(
498
498
) -> GenericParamDef {
499
499
let ( name, kind) = match def. kind {
500
500
ty:: GenericParamDefKind :: Lifetime => {
501
- ( def. name , GenericParamDefKind :: Lifetime { outlives : vec ! [ ] } )
501
+ ( def. name , GenericParamDefKind :: Lifetime { outlives : ThinVec :: new ( ) } )
502
502
}
503
503
ty:: GenericParamDefKind :: Type { has_default, synthetic, .. } => {
504
504
let default = if has_default {
@@ -515,7 +515,7 @@ fn clean_generic_param_def<'tcx>(
515
515
def. name ,
516
516
GenericParamDefKind :: Type {
517
517
did : def. def_id ,
518
- bounds : vec ! [ ] , // These are filled in from the where-clauses.
518
+ bounds : ThinVec :: new ( ) , // These are filled in from the where-clauses.
519
519
default : default. map ( Box :: new) ,
520
520
synthetic,
521
521
} ,
@@ -567,7 +567,7 @@ fn clean_generic_param<'tcx>(
567
567
} )
568
568
. collect ( )
569
569
} else {
570
- Vec :: new ( )
570
+ ThinVec :: new ( )
571
571
} ;
572
572
( param. name . ident ( ) . name , GenericParamDefKind :: Lifetime { outlives } )
573
573
}
@@ -580,7 +580,7 @@ fn clean_generic_param<'tcx>(
580
580
. filter_map ( |x| clean_generic_bound ( x, cx) )
581
581
. collect ( )
582
582
} else {
583
- Vec :: new ( )
583
+ ThinVec :: new ( )
584
584
} ;
585
585
(
586
586
param. name . ident ( ) . name ,
@@ -636,7 +636,7 @@ pub(crate) fn clean_generics<'tcx>(
636
636
match param. kind {
637
637
GenericParamDefKind :: Lifetime { .. } => unreachable ! ( ) ,
638
638
GenericParamDefKind :: Type { did, ref bounds, .. } => {
639
- cx. impl_trait_bounds . insert ( did. into ( ) , bounds. clone ( ) ) ;
639
+ cx. impl_trait_bounds . insert ( did. into ( ) , bounds. to_vec ( ) ) ;
640
640
}
641
641
GenericParamDefKind :: Const { .. } => unreachable ! ( ) ,
642
642
}
@@ -3146,7 +3146,7 @@ fn clean_bound_vars<'tcx>(
3146
3146
name,
3147
3147
kind : GenericParamDefKind :: Type {
3148
3148
did,
3149
- bounds : Vec :: new ( ) ,
3149
+ bounds : ThinVec :: new ( ) ,
3150
3150
default : None ,
3151
3151
synthetic : false ,
3152
3152
} ,
0 commit comments