From 70460231305d82ae9a7a60424cc4d0d22d0b6e77 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 10 Nov 2024 13:15:40 -0800 Subject: [PATCH] Simplify how has_bonus_display is accumulated --- impl/src/fmt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/impl/src/fmt.rs b/impl/src/fmt.rs index 3860b4e..5c0ff50 100644 --- a/impl/src/fmt.rs +++ b/impl/src/fmt.rs @@ -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)); }