Skip to content

Commit

Permalink
refactor: remove #![feature(const_intrinsic_copy)]
Browse files Browse the repository at this point in the history
The `const_intrinsic_copy` feature was stabilized by
[rust-lang/rust#97276][1].

[1]: rust-lang/rust#97276
  • Loading branch information
yvt committed Jul 19, 2022
1 parent d7e369e commit d24712a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 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 @@ -19,7 +19,6 @@
#![feature(const_cell_into_inner)]
#![feature(const_ptr_offset_from)]
#![feature(type_alias_impl_trait)]
#![feature(const_intrinsic_copy)]
#![feature(const_slice_ptr_len)]
#![feature(exhaustive_patterns)] // `let Ok(()) = Ok::<(), !>(())`
#![feature(generic_const_exprs)]
Expand Down
1 change: 0 additions & 1 deletion src/r3_kernel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#![feature(const_precise_live_drops)]
#![feature(const_raw_ptr_comparison)]
#![feature(cfg_target_has_atomic)] // `#[cfg(target_has_atomic_load_store)]`
#![feature(const_intrinsic_copy)]
#![feature(exhaustive_patterns)] // `let Ok(()) = Ok::<(), !>(())`
#![feature(generic_const_exprs)]
#![feature(const_refs_to_cell)]
Expand Down

0 comments on commit d24712a

Please sign in to comment.