@@ -468,7 +468,8 @@ crate struct MirBorrowckCtxt<'cx, 'tcx> {
468468 /// `BTreeMap` is used to preserve the order of insertions when iterating. This is necessary
469469 /// when errors in the map are being re-added to the error buffer so that errors with the
470470 /// same primary span come out in a consistent order.
471- move_error_reported : BTreeMap < Vec < MoveOutIndex > , ( PlaceRef < ' cx , ' tcx > , DiagnosticBuilder < ' cx > ) > ,
471+ move_error_reported :
472+ BTreeMap < Vec < MoveOutIndex > , ( PlaceRef < ' tcx , ' tcx > , DiagnosticBuilder < ' cx > ) > ,
472473 /// This field keeps track of errors reported in the checking of uninitialized variables,
473474 /// so that we don't report seemingly duplicate errors.
474475 uninitialized_error_reported : FxHashSet < PlaceRef < ' cx , ' tcx > > ,
@@ -1527,7 +1528,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
15271528 & mut self ,
15281529 location : Location ,
15291530 desired_action : InitializationRequiringAction ,
1530- place_span : ( PlaceRef < ' cx , ' tcx > , Span ) ,
1531+ place_span : ( PlaceRef < ' tcx , ' tcx > , Span ) ,
15311532 flow_state : & Flows < ' cx , ' tcx > ,
15321533 ) {
15331534 let maybe_uninits = & flow_state. uninits ;
@@ -1593,7 +1594,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
15931594 & mut self ,
15941595 location : Location ,
15951596 desired_action : InitializationRequiringAction ,
1596- place_span : ( PlaceRef < ' cx , ' tcx > , Span ) ,
1597+ place_span : ( PlaceRef < ' tcx , ' tcx > , Span ) ,
15971598 maybe_uninits : & BitSet < MovePathIndex > ,
15981599 from : u32 ,
15991600 to : u32 ,
@@ -1632,7 +1633,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
16321633 & mut self ,
16331634 location : Location ,
16341635 desired_action : InitializationRequiringAction ,
1635- place_span : ( PlaceRef < ' cx , ' tcx > , Span ) ,
1636+ place_span : ( PlaceRef < ' tcx , ' tcx > , Span ) ,
16361637 flow_state : & Flows < ' cx , ' tcx > ,
16371638 ) {
16381639 let maybe_uninits = & flow_state. uninits ;
@@ -1817,7 +1818,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
18171818 fn check_parent_of_field < ' cx , ' tcx > (
18181819 this : & mut MirBorrowckCtxt < ' cx , ' tcx > ,
18191820 location : Location ,
1820- base : PlaceRef < ' cx , ' tcx > ,
1821+ base : PlaceRef < ' tcx , ' tcx > ,
18211822 span : Span ,
18221823 flow_state : & Flows < ' cx , ' tcx > ,
18231824 ) {
0 commit comments