mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Resolve extra_unused_lifetimes clippy lint
warning: this lifetime isn't used in the impl --> src/aserror.rs:46:6 | 46 | impl<'a, T: Error + 'a> Sealed for T {} | ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes = note: `-W clippy::extra-unused-lifetimes` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::extra_unused_lifetimes)]`
This commit is contained in:
parent
1b15d6e6a4
commit
a72ea77c45
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ impl<'a> AsDynError<'a> for dyn Error + Send + Sync + UnwindSafe + 'a {
|
|||
|
||||
#[doc(hidden)]
|
||||
pub trait Sealed {}
|
||||
impl<'a, T: Error + 'a> Sealed for T {}
|
||||
impl<T: Error> Sealed for T {}
|
||||
impl<'a> Sealed for dyn Error + 'a {}
|
||||
impl<'a> Sealed for dyn Error + Send + 'a {}
|
||||
impl<'a> Sealed for dyn Error + Send + Sync + 'a {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue