Skip to content

Commit

Permalink
refactor(core,port_arm,port_arm_m): remove `#![feature(const_ptr_offs…
Browse files Browse the repository at this point in the history
…et_from)]`

The `const_ptr_offset_from` feature was stabilized by
[rust-lang/rust#96240][1].

[1]: rust-lang/rust#96240
  • Loading branch information
yvt committed Nov 12, 2022
1 parent b6109f8 commit 3867f05
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/r3_core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#![feature(const_slice_first_last)]
#![feature(cfg_target_has_atomic)] // `#[cfg(target_has_atomic_load_store)]`
#![feature(const_cell_into_inner)]
#![feature(const_ptr_offset_from)]
#![feature(type_alias_impl_trait)]
#![feature(const_slice_ptr_len)]
#![feature(exhaustive_patterns)] // `let Ok(()) = Ok::<(), !>(())`
Expand Down
1 change: 0 additions & 1 deletion src/r3_port_arm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![feature(const_ptr_offset_from)]
#![feature(const_refs_to_cell)]
#![feature(generic_arg_infer)]
#![feature(const_trait_impl)]
Expand Down
1 change: 0 additions & 1 deletion src/r3_port_arm_m/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![feature(const_ptr_offset_from)]
#![feature(generic_const_exprs)]
#![feature(const_refs_to_cell)]
#![feature(const_trait_impl)]
Expand Down

0 comments on commit 3867f05

Please sign in to comment.