@@ -1555,7 +1555,7 @@ pub struct Statement<'tcx> {
15551555#[ cfg( target_arch = "x86_64" ) ]
15561556static_assert_size ! ( Statement <' _>, 56 ) ;
15571557
1558- impl < ' tcx > Statement < ' tcx > {
1558+ impl Statement < ' _ > {
15591559 /// Changes a statement to a nop. This is both faster than deleting instructions and avoids
15601560 /// invalidating statement indices in `Location`s.
15611561 pub fn make_nop ( & mut self ) {
@@ -1677,7 +1677,7 @@ pub struct InlineAsm<'tcx> {
16771677 pub inputs : Box < [ ( Span , Operand < ' tcx > ) ] > ,
16781678}
16791679
1680- impl < ' tcx > Debug for Statement < ' tcx > {
1680+ impl Debug for Statement < ' _ > {
16811681 fn fmt ( & self , fmt : & mut Formatter < ' _ > ) -> fmt:: Result {
16821682 use self :: StatementKind :: * ;
16831683 match self . kind {
@@ -2047,7 +2047,7 @@ impl<'p, 'tcx> Iterator for ProjectionsIter<'p, 'tcx> {
20472047
20482048impl < ' p , ' tcx > FusedIterator for ProjectionsIter < ' p , ' tcx > { }
20492049
2050- impl < ' tcx > Debug for Place < ' tcx > {
2050+ impl Debug for Place < ' _ > {
20512051 fn fmt ( & self , fmt : & mut Formatter < ' _ > ) -> fmt:: Result {
20522052 self . iterate ( |_place_base, place_projections| {
20532053 // FIXME: remove this collect once we have migrated to slices
0 commit comments