diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2020-09-09 18:38:10 +0200 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2020-09-09 18:38:10 +0200 |
| commit | 4506d26cf39dcde786d4853af133bf26799bf65d (patch) | |
| tree | afee2a458ac7d8e63e5702cb0de792a8cc4c5f82 /library/alloc/src/lib.rs | |
| parent | b4bdc07ff5a70175dbcdff7331c557245ddb012f (diff) | |
| download | rust-4506d26cf39dcde786d4853af133bf26799bf65d.tar.gz rust-4506d26cf39dcde786d4853af133bf26799bf65d.zip | |
Remove internal and unstable MaybeUninit::UNINIT.
Looks like it is no longer necessary, as uninit_array() can be used instead in the few cases where it was needed.
Diffstat (limited to 'library/alloc/src/lib.rs')
| -rw-r--r-- | library/alloc/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library/alloc/src/lib.rs b/library/alloc/src/lib.rs index 2ced10831e7..b338e5b2de7 100644 --- a/library/alloc/src/lib.rs +++ b/library/alloc/src/lib.rs @@ -100,7 +100,6 @@ #![feature(fn_traits)] #![feature(fundamental)] #![feature(inplace_iteration)] -#![feature(internal_uninit_const)] #![feature(lang_items)] #![feature(layout_for_ptr)] #![feature(libc)] @@ -134,7 +133,7 @@ #![feature(unsized_locals)] #![feature(allocator_internals)] #![feature(slice_partition_dedup)] -#![feature(maybe_uninit_extra, maybe_uninit_slice)] +#![feature(maybe_uninit_extra, maybe_uninit_slice, maybe_uninit_uninit_array)] #![feature(alloc_layout_extra)] #![feature(trusted_random_access)] #![feature(try_trait)] |
