Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Nov 28, 2024
1 parent 69c6974 commit d173698
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ where
item: ManuallyDrop<T>,
}

impl<'a, M, T> ManagedVecRefMut<'a, M, T>
impl<M, T> ManagedVecRefMut<'_, M, T>
where
M: ManagedTypeApi,
T: ManagedVecItem,
Expand All @@ -47,7 +47,7 @@ where
}
}

impl<'a, M, T> Drop for ManagedVecRefMut<'a, M, T>
impl<M, T> Drop for ManagedVecRefMut<'_, M, T>
where
M: ManagedTypeApi,
T: ManagedVecItem,
Expand All @@ -63,7 +63,7 @@ where
}
}

impl<'a, M, T> Deref for ManagedVecRefMut<'a, M, T>
impl<M, T> Deref for ManagedVecRefMut<'_, M, T>
where
M: ManagedTypeApi,
T: ManagedVecItem,
Expand All @@ -75,7 +75,7 @@ where
}
}

impl<'a, M, T> DerefMut for ManagedVecRefMut<'a, M, T>
impl<M, T> DerefMut for ManagedVecRefMut<'_, M, T>
where
M: ManagedTypeApi,
T: ManagedVecItem,
Expand Down

0 comments on commit d173698

Please sign in to comment.