We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f84cef commit 63e0602Copy full SHA for 63e0602
library/alloc/src/collections/binary_heap/mod.rs
@@ -1652,7 +1652,7 @@ impl<T: Ord, const N: usize> From<[T; N]> for BinaryHeap<T> {
1652
}
1653
1654
#[stable(feature = "binary_heap_extras_15", since = "1.5.0")]
1655
-impl<T> From<BinaryHeap<T>> for Vec<T> {
+impl<T> From<BinaryHeap<T>> for Vec<T, Global, DEFAULT_COOP_PREFERRED> {
1656
/// Converts a `BinaryHeap<T>` into a `Vec<T>`.
1657
///
1658
/// This conversion requires no data movement or allocation, and has
0 commit comments