mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Simplify how has_bonus_display is accumulated
This commit is contained in:
parent
9cc1d0b251
commit
7046023130
1 changed files with 1 additions and 1 deletions
|
@ -102,6 +102,7 @@ impl Display<'_> {
|
||||||
Some(_) => Trait::Display,
|
Some(_) => Trait::Display,
|
||||||
None => {
|
None => {
|
||||||
bonus_display = true;
|
bonus_display = true;
|
||||||
|
has_bonus_display = true;
|
||||||
Trait::Display
|
Trait::Display
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -144,7 +145,6 @@ impl Display<'_> {
|
||||||
} else {
|
} else {
|
||||||
binding_value.into_token_stream()
|
binding_value.into_token_stream()
|
||||||
};
|
};
|
||||||
has_bonus_display |= bonus_display;
|
|
||||||
bindings.push((formatvar.to_local(), wrapped_binding_value));
|
bindings.push((formatvar.to_local(), wrapped_binding_value));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue