1
Fork 0

Remove in_band_lifetimes from borrowck

This commit is contained in:
Dániel Buga 2021-12-15 08:38:12 +01:00
parent 195e931b02
commit e837101890
15 changed files with 32 additions and 33 deletions

View file

@ -53,7 +53,7 @@ rustc_index::newtype_index! {
}
}
impl Default for MemberConstraintSet<'tcx, ty::RegionVid> {
impl Default for MemberConstraintSet<'_, ty::RegionVid> {
fn default() -> Self {
Self {
first_constraints: Default::default(),
@ -97,7 +97,7 @@ impl<'tcx> MemberConstraintSet<'tcx, ty::RegionVid> {
}
}
impl<R1> MemberConstraintSet<'tcx, R1>
impl<'tcx, R1> MemberConstraintSet<'tcx, R1>
where
R1: Copy + Hash + Eq,
{
@ -140,7 +140,7 @@ where
}
}
impl<R> MemberConstraintSet<'tcx, R>
impl<R> MemberConstraintSet<'_, R>
where
R: Copy + Hash + Eq,
{