From cff2575a32219d4294ab05d69ad37eb6bd7a7b2d Mon Sep 17 00:00:00 2001 From: HampusM Date: Wed, 21 Aug 2024 20:38:41 +0200 Subject: refactor(engine): fix clippy lints --- engine/src/util.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/src/util.rs') diff --git a/engine/src/util.rs b/engine/src/util.rs index 8e93982..a505a38 100644 --- a/engine/src/util.rs +++ b/engine/src/util.rs @@ -119,7 +119,7 @@ impl Deref for NeverDrop fn deref(&self) -> &Self::Target { - &*self.value + &self.value } } @@ -127,6 +127,6 @@ impl DerefMut for NeverDrop { fn deref_mut(&mut self) -> &mut Self::Target { - &mut *self.value + &mut self.value } } -- cgit v1.2.3-18-g5258