summaryrefslogtreecommitdiff
path: root/ecs/src/actions.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2025-03-18 13:21:46 +0100
committerHampusM <hampus@hampusmat.com>2025-03-18 13:21:46 +0100
commit7a7d3a350b22b5555c27debff6fee4fc6100fa38 (patch)
tree9eb96f2563264f51691e2a06a7b95f8b39904d18 /ecs/src/actions.rs
parentee7c0cb713891ae480407f56823289f3fe3b9807 (diff)
refactor(ecs): fix Clippy lintsHEADmaster
Diffstat (limited to 'ecs/src/actions.rs')
-rw-r--r--ecs/src/actions.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecs/src/actions.rs b/ecs/src/actions.rs
index 89fd84a..184f811 100644
--- a/ecs/src/actions.rs
+++ b/ecs/src/actions.rs
@@ -150,7 +150,7 @@ pub struct Ref<'weak_ref>
_pd: PhantomData<&'weak_ref ()>,
}
-impl<'weak_ref> Ref<'weak_ref>
+impl Ref<'_>
{
#[must_use]
pub fn to_actions(&self) -> Actions<'_>