From 84a34f29ea57fdd93a550a463454f90a82da20bf Mon Sep 17 00:00:00 2001 From: Eidolon Date: Fri, 14 May 2021 15:58:53 -0500 Subject: [PATCH] Remove obsolete const_fn feature gate on nightly --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 05945ceb..4b338188 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ #![recursion_limit = "1024"] #![cfg_attr( feature = "nightly", - feature(const_fn, const_fn_trait_bound, unboxed_closures, abi_thiscall) + feature(const_fn_trait_bound, unboxed_closures, abi_thiscall) )] #![cfg_attr( all(feature = "nightly", test),