From d04cc478cd9c4b0b42fa2e263e6bfedac9190c2a Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Tue, 19 May 2020 18:17:51 -0400 Subject: [PATCH] Remove #![feature(alloc_layout_extra)] A subset of this feature was stabilized in https://github.com/rust-lang/rust/pull/69362, and none of the still-unstable methods are in use in `blog_os` --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 2ce93a664..d15519052 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,6 @@ #![feature(abi_x86_interrupt)] #![feature(alloc_error_handler)] #![feature(const_fn)] -#![feature(alloc_layout_extra)] #![feature(const_in_array_repeat_expressions)] #![feature(wake_trait)] #![test_runner(crate::test_runner)]