Revert "Suppress nonstandard_macro_braces in generated code"

This reverts commit 245e7cfd14.
This commit is contained in:
David Tolnay 2021-09-04 12:42:56 -07:00
parent e96e0d57d7
commit ec9ac76c52
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -117,11 +117,7 @@ fn impl_struct(input: Struct) -> TokenStream {
quote! {
#[allow(unused_qualifications)]
impl #impl_generics std::fmt::Display for #ty #ty_generics #where_clause {
#[allow(
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
clippy::nonstandard_macro_braces,
clippy::used_underscore_binding,
)]
#[allow(clippy::used_underscore_binding)]
fn fmt(&self, __formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
#body
}
@ -330,13 +326,7 @@ fn impl_enum(input: Enum) -> TokenStream {
impl #impl_generics std::fmt::Display for #ty #ty_generics #where_clause {
fn fmt(&self, __formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
#use_as_display
#[allow(
unused_variables,
deprecated,
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
clippy::nonstandard_macro_braces,
clippy::used_underscore_binding,
)]
#[allow(unused_variables, deprecated, clippy::used_underscore_binding)]
match #void_deref self {
#(#arms,)*
}