From 7003d9de96824f3e1cb67d56c1c4be883f6e2520 Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 21 Sep 2026 23:42:32 +0200 Subject: refactor(engine-ecs): fix clippy lints --- engine-ecs/src/tuple.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engine-ecs/src/tuple.rs') diff --git a/engine-ecs/src/tuple.rs b/engine-ecs/src/tuple.rs index a2073b1..990842b 100644 --- a/engine-ecs/src/tuple.rs +++ b/engine-ecs/src/tuple.rs @@ -294,7 +294,7 @@ seq!(I in 0..16 { match index { #( I => { - assert!(TypeId::of::() == TypeId::of::()); + assert_eq!(TypeId::of::(), TypeId::of::()); // SAFETY: It is checked above that the type is correct Some(unsafe { &mut *(&raw mut self.I).cast::() }) -- cgit v1.2.3-18-g5258