diff options
| author | coekjan <cn_yzr@qq.com> | 2024-06-04 16:09:23 +0800 |
|---|---|---|
| committer | coekjan <cn_yzr@qq.com> | 2024-06-04 16:14:46 +0800 |
| commit | c713caff6d952f12acfdf55d1a2fd9c6a0904f31 (patch) | |
| tree | 040aad5fc5de41616fafd6f4e5570d932d74d75e /library/alloc/src | |
| parent | 27529d5c2526eab5aa03d765426c44ea55c5d269 (diff) | |
| download | rust-c713caff6d952f12acfdf55d1a2fd9c6a0904f31.tar.gz rust-c713caff6d952f12acfdf55d1a2fd9c6a0904f31.zip | |
update tracking issue for `const_binary_heap_new_in`
Diffstat (limited to 'library/alloc/src')
| -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 0b04fb4a274..8d644ec8ee8 100644 --- a/library/alloc/src/collections/binary_heap/mod.rs +++ b/library/alloc/src/collections/binary_heap/mod.rs @@ -487,7 +487,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) } |
