Don't explicitly name Global

This commit is contained in:
yanchith 2023-06-09 12:19:17 +02:00
parent 767a7119a0
commit 4df4c0d00b

View File

@ -1563,7 +1563,7 @@ unsafe impl<T, A: Allocator> SourceIter for IntoIter<T, A> {
#[doc(hidden)]
unsafe impl<I, A: Allocator> InPlaceIterable for IntoIter<I, A> {}
unsafe impl<I> AsVecIntoIter for IntoIter<I, Global> {
unsafe impl<I> AsVecIntoIter for IntoIter<I> {
type Item = I;
fn as_into_iter(&mut self) -> &mut vec::IntoIter<Self::Item> {