From 3789798e33f613dbdc91576eb57bf7691ba0568a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Sat, 4 Mar 2023 20:52:29 +0100 Subject: xtask: clippy fixes --- xtask/src/argument_parsing.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'xtask/src/argument_parsing.rs') diff --git a/xtask/src/argument_parsing.rs b/xtask/src/argument_parsing.rs index aef5e3a..3e5afc3 100644 --- a/xtask/src/argument_parsing.rs +++ b/xtask/src/argument_parsing.rs @@ -88,6 +88,7 @@ pub enum Backends { } impl Backends { + #[allow(clippy::wrong_self_convention)] pub fn to_target(&self) -> &str { match self { Backends::Thumbv6 => ARMV6M, @@ -97,6 +98,7 @@ impl Backends { } } + #[allow(clippy::wrong_self_convention)] pub fn to_rtic_feature(&self) -> &str { match self { Backends::Thumbv6 => "thumbv6-backend", @@ -105,6 +107,7 @@ impl Backends { Backends::Thumbv8Main => "thumbv8main-backend", } } + #[allow(clippy::wrong_self_convention)] pub fn to_rtic_macros_feature(&self) -> &str { match self { Backends::Thumbv6 => "cortex-m-source-masking", -- cgit v1.2.3