From ca86713437bc2c73707810806b525ff764b3e0b2 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 10 May 2021 00:51:54 +0200 Subject: [PATCH] remove const_fn feature (it has no effect any more) --- collector/benchmarks/ctfe-stress-4/src/lib.rs | 2 +- collector/benchmarks/packed-simd/src/lib.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/collector/benchmarks/ctfe-stress-4/src/lib.rs b/collector/benchmarks/ctfe-stress-4/src/lib.rs index 232c177d2..074a18c58 100644 --- a/collector/benchmarks/ctfe-stress-4/src/lib.rs +++ b/collector/benchmarks/ctfe-stress-4/src/lib.rs @@ -1,5 +1,5 @@ #![allow(dead_code)] -#![feature(const_fn, const_fn_trait_bound, const_fn_unsize, const_eval_limit)] +#![feature(const_fn_trait_bound, const_fn_unsize, const_eval_limit)] #![const_eval_limit = "10000000"] use std::mem::MaybeUninit; diff --git a/collector/benchmarks/packed-simd/src/lib.rs b/collector/benchmarks/packed-simd/src/lib.rs index a20e35d97..d2ba49326 100644 --- a/collector/benchmarks/packed-simd/src/lib.rs +++ b/collector/benchmarks/packed-simd/src/lib.rs @@ -201,7 +201,6 @@ #![feature( repr_simd, - const_fn, platform_intrinsics, stdsimd, aarch64_target_feature,