Skip to content

Commit

Permalink
gtk4: Fix new clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sdroege committed Dec 18, 2024
1 parent 87a3c3e commit 8225b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtk4/src/bitset_iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl<'a> ToGlibPtr<'a, *const ffi::GtkBitsetIter> for BitsetIter<'a> {
type Storage = &'a Self;

#[inline]
fn to_glib_none(&'a self) -> Stash<*const ffi::GtkBitsetIter, Self> {
fn to_glib_none(&'a self) -> Stash<'a, *const ffi::GtkBitsetIter, Self> {
Stash(&self.0 as *const ffi::GtkBitsetIter, self)
}
}
Expand Down

0 comments on commit 8225b55

Please sign in to comment.