Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 21f6b65

Browse files
authoredJul 24, 2024
Rollup merge of rust-lang#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: rust-lang#112353 - New issue: rust-lang#125961
2 parents eee5bba + 4952644 commit 21f6b65

File tree

1 file changed

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

1 file changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ impl<T: Ord, A: Allocator> BinaryHeap<T, A> {
484484
/// heap.push(4);
485485
/// ```
486486
#[unstable(feature = "allocator_api", issue = "32838")]
487-
#[rustc_const_unstable(feature = "const_binary_heap_new_in", issue = "112353")]
487+
#[rustc_const_unstable(feature = "const_binary_heap_new_in", issue = "125961")]
488488
#[must_use]
489489
pub const fn new_in(alloc: A) -> BinaryHeap<T, A> {
490490
BinaryHeap { data: Vec::new_in(alloc) }

0 commit comments

Comments
 (0)
Failed to load comments.