From 3458288946a7243bdf94cee8e5a75e30663cd35b Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Sat, 15 Apr 2023 12:38:17 +0200 Subject: [PATCH] Oops, these aren't std-only --- xtask/src/main.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/xtask/src/main.rs b/xtask/src/main.rs index a50657d0a2..da61d8f14b 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -37,7 +37,7 @@ pub struct Target<'a> { } impl<'a> Target<'a> { - const STD_FEATURES: &str = "test-critical-section"; + const DEFAULT_FEATURES: &str = "test-critical-section"; pub const fn new(triple: &'a str, has_std: bool) -> Self { Self { triple, has_std } @@ -52,11 +52,7 @@ impl<'a> Target<'a> { } pub fn and_features(&self, features: &str) -> String { - if self.has_std { - format!("{},{}", Self::STD_FEATURES, features) - } else { - features.to_string() - } + format!("{},{}", Self::DEFAULT_FEATURES, features) } }