Rename some lifetimes.
Giving them more typical names.
This commit is contained in:
parent
072bf482c9
commit
606b9cb406
2 changed files with 9 additions and 9 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue