Skip to content

Commit 4df4c0d

Browse files
committed
Don't explicitly name Global
1 parent 767a711 commit 4df4c0d

File tree

1 file changed

+1
-1
lines changed
  • library/alloc/src/collections/binary_heap

1 file changed

+1
-1
lines changed

library/alloc/src/collections/binary_heap/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1563,7 +1563,7 @@ unsafe impl<T, A: Allocator> SourceIter for IntoIter<T, A> {
15631563
#[doc(hidden)]
15641564
unsafe impl<I, A: Allocator> InPlaceIterable for IntoIter<I, A> {}
15651565

1566-
unsafe impl<I> AsVecIntoIter for IntoIter<I, Global> {
1566+
unsafe impl<I> AsVecIntoIter for IntoIter<I> {
15671567
type Item = I;
15681568

15691569
fn as_into_iter(&mut self) -> &mut vec::IntoIter<Self::Item> {

0 commit comments

Comments
 (0)