From 601b4dccec12c34909ceeb417d847534f3c08dc1 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 12 Jul 2020 19:25:12 -0400 Subject: [PATCH] I think const fn are stable enough that this isn't required --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index e0ee4ccd..a0d156c7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ #![no_std] -#![feature(allocator_api, alloc_error_handler, const_fn, const_raw_ptr_deref)] +#![feature(allocator_api, alloc_error_handler, const_raw_ptr_deref)] extern crate alloc;