From 550be96bc63cf0301c36d060892b0230d2d28e46 Mon Sep 17 00:00:00 2001 From: yvt Date: Sat, 4 Dec 2021 17:22:00 +0900 Subject: [PATCH] fix: remove `#![feature(maybe_uninit_ref)]` It's been stabilized by . --- src/r3_support_rp2040/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/r3_support_rp2040/src/lib.rs b/src/r3_support_rp2040/src/lib.rs index 1d693400d2..f2a364ba36 100644 --- a/src/r3_support_rp2040/src/lib.rs +++ b/src/r3_support_rp2040/src/lib.rs @@ -4,7 +4,6 @@ //! [R3]: ::r3 //! [Raspberry Pi Pico]: https://pico.raspberrypi.org #![feature(raw_ref_op)] -#![feature(maybe_uninit_ref)] #![feature(asm)] #![feature(const_fn_trait_bound)] #![feature(const_mut_refs)]