Skip to content

Commit 4248395

Browse files
committed
Remove #![feature(const_raw_ptr_deref)]
It's now stable in nightly.
1 parent 4c71bed commit 4248395

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ features = ["unstable_const"]
6161

6262
Your crate root: (`lib.rs`/`main.rs`)
6363
```rust,ignore
64-
#![feature(const_ptr_offset_from, const_raw_ptr_deref, const_refs_to_cell)]
64+
#![feature(const_ptr_offset_from, const_refs_to_cell)]
6565
```

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
#![no_std]
5959
#![cfg_attr(
6060
feature = "unstable_const",
61-
feature(const_ptr_offset_from, const_raw_ptr_deref, const_refs_to_cell)
61+
feature(const_ptr_offset_from, const_refs_to_cell)
6262
)]
6363

6464
#[macro_use]

0 commit comments

Comments
 (0)