Skip to content

Commit e975c1c

Browse files
committed
refactor: remove #![feature(const_intrinsic_copy)]
The `const_intrinsic_copy` feature was stabilized by [rust-lang/rust#97276][1]. [1]: rust-lang/rust#97276
1 parent b4a7dcb commit e975c1c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/r3_core/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#![feature(const_cell_into_inner)]
2020
#![feature(const_ptr_offset_from)]
2121
#![feature(type_alias_impl_trait)]
22-
#![feature(const_intrinsic_copy)]
2322
#![feature(const_slice_ptr_len)]
2423
#![feature(exhaustive_patterns)] // `let Ok(()) = Ok::<(), !>(())`
2524
#![feature(generic_const_exprs)]

src/r3_kernel/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#![feature(const_precise_live_drops)]
88
#![feature(const_raw_ptr_comparison)]
99
#![feature(cfg_target_has_atomic)] // `#[cfg(target_has_atomic_load_store)]`
10-
#![feature(const_intrinsic_copy)]
1110
#![feature(exhaustive_patterns)] // `let Ok(()) = Ok::<(), !>(())`
1211
#![feature(generic_const_exprs)]
1312
#![feature(const_refs_to_cell)]

0 commit comments

Comments
 (0)