@@ -20,7 +20,7 @@ struct LayoutTest<'tcx> {
20
20
tcx : TyCtxt < ' tcx > ,
21
21
}
22
22
23
- impl ItemLikeVisitor < ' tcx > for LayoutTest < ' tcx > {
23
+ impl < ' tcx > ItemLikeVisitor < ' tcx > for LayoutTest < ' tcx > {
24
24
fn visit_item ( & mut self , item : & ' tcx hir:: Item < ' tcx > ) {
25
25
match item. kind {
26
26
ItemKind :: TyAlias ( ..)
@@ -42,7 +42,7 @@ impl ItemLikeVisitor<'tcx> for LayoutTest<'tcx> {
42
42
fn visit_foreign_item ( & mut self , _: & ' tcx hir:: ForeignItem < ' tcx > ) { }
43
43
}
44
44
45
- impl LayoutTest < ' tcx > {
45
+ impl < ' tcx > LayoutTest < ' tcx > {
46
46
fn dump_layout_of ( & self , item_def_id : LocalDefId , item : & hir:: Item < ' tcx > , attr : & Attribute ) {
47
47
let tcx = self . tcx ;
48
48
let param_env = self . tcx . param_env ( item_def_id) ;
@@ -114,7 +114,7 @@ struct UnwrapLayoutCx<'tcx> {
114
114
param_env : ParamEnv < ' tcx > ,
115
115
}
116
116
117
- impl LayoutOfHelpers < ' tcx > for UnwrapLayoutCx < ' tcx > {
117
+ impl < ' tcx > LayoutOfHelpers < ' tcx > for UnwrapLayoutCx < ' tcx > {
118
118
type LayoutOfResult = TyAndLayout < ' tcx > ;
119
119
120
120
fn handle_layout_err ( & self , err : LayoutError < ' tcx > , span : Span , ty : Ty < ' tcx > ) -> ! {
@@ -127,19 +127,19 @@ impl LayoutOfHelpers<'tcx> for UnwrapLayoutCx<'tcx> {
127
127
}
128
128
}
129
129
130
- impl HasTyCtxt < ' tcx > for UnwrapLayoutCx < ' tcx > {
130
+ impl < ' tcx > HasTyCtxt < ' tcx > for UnwrapLayoutCx < ' tcx > {
131
131
fn tcx ( & self ) -> TyCtxt < ' tcx > {
132
132
self . tcx
133
133
}
134
134
}
135
135
136
- impl HasParamEnv < ' tcx > for UnwrapLayoutCx < ' tcx > {
136
+ impl < ' tcx > HasParamEnv < ' tcx > for UnwrapLayoutCx < ' tcx > {
137
137
fn param_env ( & self ) -> ParamEnv < ' tcx > {
138
138
self . param_env
139
139
}
140
140
}
141
141
142
- impl HasDataLayout for UnwrapLayoutCx < ' tcx > {
142
+ impl < ' tcx > HasDataLayout for UnwrapLayoutCx < ' tcx > {
143
143
fn data_layout ( & self ) -> & TargetDataLayout {
144
144
self . tcx . data_layout ( )
145
145
}
0 commit comments