mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Revert "Suppress nonstandard_macro_braces in generated code"
This reverts commit 245e7cfd14
.
This commit is contained in:
parent
e96e0d57d7
commit
ec9ac76c52
1 changed files with 2 additions and 12 deletions
|
@ -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,)*
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue