diff options
| author | ultrabear <bearodark@gmail.com> | 2024-09-18 20:18:05 -0700 |
|---|---|---|
| committer | ultrabear <bearodark@gmail.com> | 2024-09-18 20:22:10 -0700 |
| commit | 63f14b3a1ef7176e8bef3de4ba21579235cd534a (patch) | |
| tree | 34c53b3d7ba04721e684cccb789ba4a7b0ee3534 | |
| parent | 7477f3eb350f37fbd376929b6b82b9e6bdd7621f (diff) | |
| download | rust-63f14b3a1ef7176e8bef3de4ba21579235cd534a.tar.gz rust-63f14b3a1ef7176e8bef3de4ba21579235cd534a.zip | |
remove feature attributes as const_maybe_uninit_as_mut_ptr is stabilized
| -rw-r--r-- | library/alloc/src/lib.rs | 1 | ||||
| -rw-r--r-- | library/core/src/lib.rs | 1 | ||||
| -rw-r--r-- | library/core/tests/lib.rs | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/library/alloc/src/lib.rs b/library/alloc/src/lib.rs index f98c0cca1db..f0597f295b3 100644 --- a/library/alloc/src/lib.rs +++ b/library/alloc/src/lib.rs @@ -110,7 +110,6 @@ #![feature(const_cow_is_borrowed)] #![feature(const_eval_select)] #![feature(const_heap)] -#![feature(const_maybe_uninit_as_mut_ptr)] #![feature(const_maybe_uninit_write)] #![feature(const_option)] #![feature(const_pin)] diff --git a/library/core/src/lib.rs b/library/core/src/lib.rs index 348ccebea3b..e5a3d165a43 100644 --- a/library/core/src/lib.rs +++ b/library/core/src/lib.rs @@ -131,7 +131,6 @@ #![feature(const_ipv4)] #![feature(const_ipv6)] #![feature(const_likely)] -#![feature(const_maybe_uninit_as_mut_ptr)] #![feature(const_maybe_uninit_assume_init)] #![feature(const_nonnull_new)] #![feature(const_num_midpoint)] diff --git a/library/core/tests/lib.rs b/library/core/tests/lib.rs index a0d6efc1743..5315ac856f6 100644 --- a/library/core/tests/lib.rs +++ b/library/core/tests/lib.rs @@ -26,7 +26,6 @@ #![feature(const_ipv4)] #![feature(const_ipv6)] #![feature(const_likely)] -#![feature(const_maybe_uninit_as_mut_ptr)] #![feature(const_nonnull_new)] #![feature(const_option)] #![feature(const_option_ext)] |
