Skip to content

Commit

Permalink
Fix clippy-warning
Browse files Browse the repository at this point in the history
  • Loading branch information
avl committed Aug 19, 2024
1 parent fb86b2d commit 7c90c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arcshift/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ impl<'a, T: 'static> Drop for ArcShiftCellHandle<'a, T> {
// SAFETY:
// There are no references to 'inner', so it's safe to obtain
// a mutable reference.
unsafe { (&mut *self.cell.inner.get()).reload() };
unsafe { (*self.cell.inner.get()).reload() };
}
self.cell.recursion.set(rec);
}
Expand Down

0 comments on commit 7c90c54

Please sign in to comment.