Rename some lifetimes.
Giving them more typical names.
This commit is contained in:
@@ -155,11 +155,11 @@ pub trait DropElaborator<'a, 'tcx>: fmt::Debug {
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
struct DropCtxt<'l, 'b, 'tcx, D>
|
||||
struct DropCtxt<'a, 'b, 'tcx, D>
|
||||
where
|
||||
D: DropElaborator<'b, 'tcx>,
|
||||
{
|
||||
elaborator: &'l mut D,
|
||||
elaborator: &'a mut D,
|
||||
|
||||
source_info: SourceInfo,
|
||||
|
||||
@@ -192,7 +192,7 @@ pub fn elaborate_drop<'b, 'tcx, D>(
|
||||
DropCtxt { elaborator, source_info, place, path, succ, unwind }.elaborate_drop(bb)
|
||||
}
|
||||
|
||||
impl<'l, 'b, 'tcx, D> DropCtxt<'l, 'b, 'tcx, D>
|
||||
impl<'a, 'b, 'tcx, D> DropCtxt<'a, 'b, 'tcx, D>
|
||||
where
|
||||
D: DropElaborator<'b, 'tcx>,
|
||||
'tcx: 'b,
|
||||
|
||||
Reference in New Issue
Block a user