diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-07-24 05:05:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-24 05:05:30 +0200 |
| commit | 0666eee2a18be2ff0e71722a38b5c80b0eddaca5 (patch) | |
| tree | 703ade1c58c5eace2a48fb6fe1e395cb0be85a86 | |
| parent | f751af4d78a11d0231b35217348a3346a28688f1 (diff) | |
| parent | c713caff6d952f12acfdf55d1a2fd9c6a0904f31 (diff) | |
| download | rust-0666eee2a18be2ff0e71722a38b5c80b0eddaca5.tar.gz rust-0666eee2a18be2ff0e71722a38b5c80b0eddaca5.zip | |
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
| -rw-r--r-- | library/alloc/src/collections/binary_heap/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/collections/binary_heap/mod.rs b/library/alloc/src/collections/binary_heap/mod.rs index af01db19139..fe1ff241395 100644 --- a/library/alloc/src/collections/binary_heap/mod.rs +++ b/library/alloc/src/collections/binary_heap/mod.rs @@ -484,7 +484,7 @@ impl<T: Ord, A: Allocator> BinaryHeap<T, A> { /// heap.push(4); /// ``` #[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] pub const fn new_in(alloc: A) -> BinaryHeap<T, A> { BinaryHeap { data: Vec::new_in(alloc) } |
