Skip to content

Commit 967ee5c

Browse files
committed
fix: remove #![feature(option_result_unwrap_unchecked)]
It's been stabilized by <rust-lang/rust#89951>.
1 parent 550be96 commit 967ee5c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/r3/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#![feature(exhaustive_patterns)] // `let Ok(()) = Ok::<(), !>(())`
1414
#![feature(decl_macro)]
1515
#![feature(set_ptr_value)] // `<*const T>::set_ptr_value`
16-
#![feature(option_result_unwrap_unchecked)] // `Option<T>::unwrap_unchecked`
1716
#![feature(cfg_target_has_atomic)] // `#[cfg(target_has_atomic_load_store)]`
1817
#![feature(never_type)] // `!`
1918
#![feature(const_type_id)] // `TypeId::of` as `const fn`

src/r3_kernel/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![feature(const_maybe_uninit_assume_init)]
2-
#![feature(option_result_unwrap_unchecked)]
32
#![feature(const_slice_from_raw_parts)]
43
#![feature(const_fn_fn_ptr_basics)]
54
#![feature(cfg_target_has_atomic)] // `#[cfg(target_has_atomic_load_store)]`

0 commit comments

Comments
 (0)