From 7af802e1dfcdbd4d863fec9a8f88229694926860 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sat, 22 Jun 2024 22:53:35 +0200 Subject: fix(ecs): disable system param compatability checks by default --- ecs/src/system/util.rs | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'ecs/src/system') diff --git a/ecs/src/system/util.rs b/ecs/src/system/util.rs index 9175911..54fff0e 100644 --- a/ecs/src/system/util.rs +++ b/ecs/src/system/util.rs @@ -1,12 +1,15 @@ macro_rules! check_params_are_compatible { ($excluded_index: tt, $param: ident, $cnt: tt) => { - seq!(N in 0..$cnt { - if N != $excluded_index { - if !$param::is_compatible::() { - panic!("Atleast two parameters are incompatible"); + #[cfg(feature = "system-param-compat-checks")] + { + seq!(N in 0..$cnt { + if N != $excluded_index { + if !$param::is_compatible::() { + panic!("Atleast two parameters are incompatible"); + } } - } - }) + }); + } }; } -- cgit v1.2.3-18-g5258