1
Fork 0

fix a couple clippy:complexitys

double_parens
 filter_map_identity
 needless_question_mark
 redundant_guards
This commit is contained in:
Matthias Krüger 2024-10-12 11:52:30 +02:00
parent be01dabfef
commit dab76eccdf
4 changed files with 6 additions and 6 deletions

View file

@ -619,11 +619,11 @@ pub fn eval_condition(
// we can't use `try_gate_cfg` as symbols don't differentiate between `r#true`
// and `true`, and we want to keep the former working without feature gate
gate_cfg(
&((
&(
if *b { kw::True } else { kw::False },
sym::cfg_boolean_literals,
|features: &Features| features.cfg_boolean_literals(),
)),
),
cfg.span(),
sess,
features,