Skip to content

Commit

Permalink
Remove a useless lifetime name for Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Dec 6, 2024
1 parent 2ba2551 commit 072bc7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heed/src/txn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ impl<'p> Deref for RwTxn<'p> {

// TODO can't we just always implement it?
#[cfg(master3)]
impl<'p> std::ops::DerefMut for RwTxn<'p> {
impl std::ops::DerefMut for RwTxn<'_> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.txn
}
Expand Down

0 comments on commit 072bc7c

Please sign in to comment.