@@ -110,7 +110,7 @@ macro_rules! impl_snapshot_for {
110
110
impl <' a, Ctx > self :: Snapshot <' a, Ctx > for $enum_name
111
111
where Ctx : self :: SnapshotContext <' a>,
112
112
{
113
- type Item = $enum_name<( ) , AllocIdSnapshot <' a>>;
113
+ type Item = $enum_name<( ) , AllocIdSnapshot <' a>>;
114
114
115
115
#[ inline]
116
116
fn snapshot( & self , __ctx: & ' a Ctx ) -> Self :: Item {
@@ -131,7 +131,7 @@ macro_rules! impl_snapshot_for {
131
131
impl <' a, Ctx > self :: Snapshot <' a, Ctx > for $struct_name
132
132
where Ctx : self :: SnapshotContext <' a>,
133
133
{
134
- type Item = $struct_name<( ) , AllocIdSnapshot <' a>>;
134
+ type Item = $struct_name<( ) , AllocIdSnapshot <' a>>;
135
135
136
136
#[ inline]
137
137
fn snapshot( & self , __ctx: & ' a Ctx ) -> Self :: Item {
@@ -183,7 +183,7 @@ impl_snapshot_for!(struct Pointer {
183
183
impl < ' a , Ctx > Snapshot < ' a , Ctx > for Scalar
184
184
where Ctx : SnapshotContext < ' a > ,
185
185
{
186
- type Item = Scalar < ( ) , AllocIdSnapshot < ' a > > ;
186
+ type Item = Scalar < ( ) , AllocIdSnapshot < ' a > > ;
187
187
188
188
fn snapshot ( & self , ctx : & ' a Ctx ) -> Self :: Item {
189
189
match self {
@@ -237,7 +237,7 @@ impl<'a> HashStable<StableHashingContext<'a>> for Place {
237
237
impl < ' a , Ctx > Snapshot < ' a , Ctx > for Place
238
238
where Ctx : SnapshotContext < ' a > ,
239
239
{
240
- type Item = Place < ( ) , AllocIdSnapshot < ' a > > ;
240
+ type Item = Place < ( ) , AllocIdSnapshot < ' a > > ;
241
241
242
242
fn snapshot ( & self , ctx : & ' a Ctx ) -> Self :: Item {
243
243
match self {
@@ -281,7 +281,7 @@ impl_snapshot_for!(enum LocalValue {
281
281
impl < ' a , Ctx > Snapshot < ' a , Ctx > for Relocations
282
282
where Ctx : SnapshotContext < ' a > ,
283
283
{
284
- type Item = Relocations < ( ) , AllocIdSnapshot < ' a > > ;
284
+ type Item = Relocations < ( ) , AllocIdSnapshot < ' a > > ;
285
285
286
286
fn snapshot ( & self , ctx : & ' a Ctx ) -> Self :: Item {
287
287
Relocations :: from_presorted ( self . iter ( )
@@ -293,7 +293,7 @@ impl<'a, Ctx> Snapshot<'a, Ctx> for Relocations
293
293
#[ derive( Eq , PartialEq ) ]
294
294
struct AllocationSnapshot < ' a > {
295
295
bytes : & ' a [ u8 ] ,
296
- relocations : Relocations < ( ) , AllocIdSnapshot < ' a > > ,
296
+ relocations : Relocations < ( ) , AllocIdSnapshot < ' a > > ,
297
297
undef_mask : & ' a UndefMask ,
298
298
align : & ' a Align ,
299
299
mutability : & ' a Mutability ,
@@ -337,8 +337,8 @@ struct FrameSnapshot<'a, 'tcx: 'a> {
337
337
instance : & ' a ty:: Instance < ' tcx > ,
338
338
span : & ' a Span ,
339
339
return_to_block : & ' a StackPopCleanup ,
340
- return_place : Place < ( ) , AllocIdSnapshot < ' a > > ,
341
- locals : IndexVec < mir:: Local , LocalValue < ( ) , AllocIdSnapshot < ' a > > > ,
340
+ return_place : Place < ( ) , AllocIdSnapshot < ' a > > ,
341
+ locals : IndexVec < mir:: Local , LocalValue < ( ) , AllocIdSnapshot < ' a > > > ,
342
342
block : & ' a mir:: BasicBlock ,
343
343
stmt : usize ,
344
344
}
0 commit comments