From 7bfacb39c46c8f99d82b1c146a46222ebc41a39b 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)] (#806) 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 e79038ae..25e2527e 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)] #![test_runner(crate::test_runner)] #![reexport_test_harness_main = "test_main"]