diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-02-18 16:23:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-18 16:23:33 +0100 |
| commit | a144ea1c4b39bdef608c537b25343674aa2b5bc7 (patch) | |
| tree | f254265efe6fcda78534a586983a65940f4d6f1d /compiler/rustc_ast | |
| parent | f1c918f1f3166c1cb2624ce2e2783d357e70dc3d (diff) | |
| parent | b80057d08d9f1b1726ec99dc57296cffec246bb1 (diff) | |
| download | rust-a144ea1c4b39bdef608c537b25343674aa2b5bc7.tar.gz rust-a144ea1c4b39bdef608c537b25343674aa2b5bc7.zip | |
Rollup merge of #93634 - matthiaskrgr:clippy_complexity_jan_2022, r=oli-obk
compiler: clippy::complexity fixes useless_format map_flatten useless_conversion needless_bool filter_next clone_on_copy needless_option_as_deref
Diffstat (limited to 'compiler/rustc_ast')
| -rw-r--r-- | compiler/rustc_ast/src/attr/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_ast/src/attr/mod.rs b/compiler/rustc_ast/src/attr/mod.rs index 6a0ace04d4b..b94b8c87216 100644 --- a/compiler/rustc_ast/src/attr/mod.rs +++ b/compiler/rustc_ast/src/attr/mod.rs @@ -230,7 +230,7 @@ impl AttrItem { } pub fn meta_kind(&self) -> Option<MetaItemKind> { - Some(MetaItemKind::from_mac_args(&self.args)?) + MetaItemKind::from_mac_args(&self.args) } } |
