Rollup merge of #125962 - Coekjan:const-binary-heap, r=Amanieu

Update tracking issue for `const_binary_heap_new_in`

This PR updates the tracking issue of `const_binary_heap_new_in` feature:
- Old issue: #112353
- New issue: #125961
This commit is contained in:
Matthias Krüger 2024-07-24 05:05:30 +02:00 committed by GitHub
commit 0666eee2a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -484,7 +484,7 @@ impl<T: Ord, A: Allocator> BinaryHeap<T, A> {
/// heap.push(4); /// heap.push(4);
/// ``` /// ```
#[unstable(feature = "allocator_api", issue = "32838")] #[unstable(feature = "allocator_api", issue = "32838")]
#[rustc_const_unstable(feature = "const_binary_heap_new_in", issue = "112353")] #[rustc_const_unstable(feature = "const_binary_heap_new_in", issue = "125961")]
#[must_use] #[must_use]
pub const fn new_in(alloc: A) -> BinaryHeap<T, A> { pub const fn new_in(alloc: A) -> BinaryHeap<T, A> {
BinaryHeap { data: Vec::new_in(alloc) } BinaryHeap { data: Vec::new_in(alloc) }