Simplify how has_bonus_display is accumulated

This commit is contained in:
David Tolnay 2024-11-10 13:15:40 -08:00
parent 9cc1d0b251
commit 7046023130
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -102,6 +102,7 @@ impl Display<'_> {
Some(_) => Trait::Display,
None => {
bonus_display = true;
has_bonus_display = true;
Trait::Display
}
};
@ -144,7 +145,6 @@ impl Display<'_> {
} else {
binding_value.into_token_stream()
};
has_bonus_display |= bonus_display;
bindings.push((formatvar.to_local(), wrapped_binding_value));
}