Remove #![feature(const_maybe_uninit_as_ptr)]

It's now stable in nightly.
This commit is contained in:
yvt 2021-12-03 22:21:14 +09:00
parent b14262b1b3
commit 4c71bed98d
2 changed files with 2 additions and 7 deletions

View File

@ -61,5 +61,5 @@ features = ["unstable_const"]
Your crate root: (`lib.rs`/`main.rs`)
```rust,ignore
#![feature(const_ptr_offset_from, const_maybe_uninit_as_ptr, const_raw_ptr_deref, const_refs_to_cell)]
#![feature(const_ptr_offset_from, const_raw_ptr_deref, const_refs_to_cell)]
```

View File

@ -58,12 +58,7 @@
#![no_std]
#![cfg_attr(
feature = "unstable_const",
feature(
const_ptr_offset_from,
const_maybe_uninit_as_ptr,
const_raw_ptr_deref,
const_refs_to_cell,
)
feature(const_ptr_offset_from, const_raw_ptr_deref, const_refs_to_cell)
)]
#[macro_use]