Skip to content

Commit c713caf

Browse files
committed
update tracking issue for const_binary_heap_new_in
1 parent 27529d5 commit c713caf

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
@@ -487,7 +487,7 @@ impl<T: Ord, A: Allocator> BinaryHeap<T, A> {
487487
/// heap.push(4);
488488
/// ```
489489
#[unstable(feature = "allocator_api", issue = "32838")]
490-
#[rustc_const_unstable(feature = "const_binary_heap_new_in", issue = "112353")]
490+
#[rustc_const_unstable(feature = "const_binary_heap_new_in", issue = "125961")]
491491
#[must_use]
492492
pub const fn new_in(alloc: A) -> BinaryHeap<T, A> {
493493
BinaryHeap { data: Vec::new_in(alloc) }

0 commit comments

Comments
 (0)