Skip to content

Commit

Permalink
fix: remove #![feature(option_result_unwrap_unchecked)]
Browse files Browse the repository at this point in the history
It's been stabilized by <rust-lang/rust#89951>.
  • Loading branch information
yvt committed Dec 5, 2021
1 parent 550be96 commit 967ee5c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/r3/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#![feature(exhaustive_patterns)] // `let Ok(()) = Ok::<(), !>(())`
#![feature(decl_macro)]
#![feature(set_ptr_value)] // `<*const T>::set_ptr_value`
#![feature(option_result_unwrap_unchecked)] // `Option<T>::unwrap_unchecked`
#![feature(cfg_target_has_atomic)] // `#[cfg(target_has_atomic_load_store)]`
#![feature(never_type)] // `!`
#![feature(const_type_id)] // `TypeId::of` as `const fn`
Expand Down
1 change: 0 additions & 1 deletion src/r3_kernel/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![feature(const_maybe_uninit_assume_init)]
#![feature(option_result_unwrap_unchecked)]
#![feature(const_slice_from_raw_parts)]
#![feature(const_fn_fn_ptr_basics)]
#![feature(cfg_target_has_atomic)] // `#[cfg(target_has_atomic_load_store)]`
Expand Down

0 comments on commit 967ee5c

Please sign in to comment.