Skip to content

Commit

Permalink
Remove #![feature(const_raw_ptr_deref)]
Browse files Browse the repository at this point in the history
It's now stable in nightly.
  • Loading branch information
yvt committed Dec 3, 2021
1 parent 4c71bed commit 4248395
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ features = ["unstable_const"]

Your crate root: (`lib.rs`/`main.rs`)
```rust,ignore
#![feature(const_ptr_offset_from, const_raw_ptr_deref, const_refs_to_cell)]
#![feature(const_ptr_offset_from, const_refs_to_cell)]
```
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
#![no_std]
#![cfg_attr(
feature = "unstable_const",
feature(const_ptr_offset_from, const_raw_ptr_deref, const_refs_to_cell)
feature(const_ptr_offset_from, const_refs_to_cell)
)]

#[macro_use]
Expand Down

0 comments on commit 4248395

Please sign in to comment.