diff options
| author | Ralf Jung <post@ralfj.de> | 2024-11-30 10:33:09 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-11-30 11:55:58 +0100 |
| commit | 4ce2116aef0677c6f59890d9bd3acea890fa5cbb (patch) | |
| tree | 4d17bc8f429d65deccdeb3191d35a50ef984452a /library/alloc | |
| parent | 0dc94404ee1c529dcf0071f0ef84f64934e7f747 (diff) | |
| download | rust-4ce2116aef0677c6f59890d9bd3acea890fa5cbb.tar.gz rust-4ce2116aef0677c6f59890d9bd3acea890fa5cbb.zip | |
get rid of a bunch of unnecessary rustc_const_unstable
Diffstat (limited to 'library/alloc')
| -rw-r--r-- | library/alloc/src/collections/binary_heap/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/library/alloc/src/collections/binary_heap/mod.rs b/library/alloc/src/collections/binary_heap/mod.rs index 0bc65cdbc55..5d3997e14e3 100644 --- a/library/alloc/src/collections/binary_heap/mod.rs +++ b/library/alloc/src/collections/binary_heap/mod.rs @@ -486,7 +486,6 @@ 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 = "125961")] #[must_use] pub const fn new_in(alloc: A) -> BinaryHeap<T, A> { BinaryHeap { data: Vec::new_in(alloc) } |
