mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Suppress clippy used_underscore_binding pedantic lint
This commit is contained in:
parent
21b5dabc25
commit
ecb595b389
1 changed files with 2 additions and 1 deletions
|
@ -114,6 +114,7 @@ fn impl_struct(input: Struct) -> TokenStream {
|
||||||
let display_impl = display_body.map(|body| {
|
let display_impl = display_body.map(|body| {
|
||||||
quote! {
|
quote! {
|
||||||
impl #impl_generics std::fmt::Display for #ty #ty_generics #where_clause {
|
impl #impl_generics std::fmt::Display for #ty #ty_generics #where_clause {
|
||||||
|
#[allow(clippy::used_underscore_binding)]
|
||||||
fn fmt(&self, __formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
|
fn fmt(&self, __formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
|
||||||
#body
|
#body
|
||||||
}
|
}
|
||||||
|
@ -296,7 +297,7 @@ fn impl_enum(input: Enum) -> TokenStream {
|
||||||
impl #impl_generics std::fmt::Display for #ty #ty_generics #where_clause {
|
impl #impl_generics std::fmt::Display for #ty #ty_generics #where_clause {
|
||||||
fn fmt(&self, __formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
|
fn fmt(&self, __formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
|
||||||
#use_as_display
|
#use_as_display
|
||||||
#[allow(unused_variables, deprecated)]
|
#[allow(unused_variables, deprecated, clippy::used_underscore_binding)]
|
||||||
match #void_deref self {
|
match #void_deref self {
|
||||||
#(#arms,)*
|
#(#arms,)*
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue