Skip to content

Commit

Permalink
cargo clippy --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mstange committed Dec 6, 2024
1 parent 4dad6b1 commit 2b3f519
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/unwinder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ impl<'u, 'c, 'r, U: Unwinder, F: FnMut(u64) -> Result<u64, ()>> UnwindIterator<'
}
}

impl<'u, 'c, 'r, U: Unwinder, F: FnMut(u64) -> Result<u64, ()>> UnwindIterator<'u, 'c, 'r, U, F> {
impl<U: Unwinder, F: FnMut(u64) -> Result<u64, ()>> UnwindIterator<'_, '_, '_, U, F> {
/// Yield the next frame in the stack.
///
/// The first frame is `Ok(Some(FrameAddress::InstructionPointer(...)))`.
Expand Down Expand Up @@ -175,8 +175,8 @@ impl<'u, 'c, 'r, U: Unwinder, F: FnMut(u64) -> Result<u64, ()>> UnwindIterator<'
}
}

impl<'u, 'c, 'r, U: Unwinder, F: FnMut(u64) -> Result<u64, ()>> FallibleIterator
for UnwindIterator<'u, 'c, 'r, U, F>
impl<U: Unwinder, F: FnMut(u64) -> Result<u64, ()>> FallibleIterator
for UnwindIterator<'_, '_, '_, U, F>
{
type Item = FrameAddress;
type Error = Error;
Expand Down

0 comments on commit 2b3f519

Please sign in to comment.