summaryrefslogtreecommitdiff
path: root/engine-reflection/src/lib.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-09-22 18:17:41 +0200
committerHampusM <hampus@hampusmat.com>2026-09-22 18:17:41 +0200
commit2ccda0cd5f81909fddc74d95f960f781a64bcae1 (patch)
treea55900877675a24b5fd219009b8174cab60b49fe /engine-reflection/src/lib.rs
parentd93535128d5422977eccebee1cfacea2281fd078 (diff)
refactor(engine-reflection): allow type complexity clippy lint
Diffstat (limited to 'engine-reflection/src/lib.rs')
-rw-r--r--engine-reflection/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/engine-reflection/src/lib.rs b/engine-reflection/src/lib.rs
index 23e6b8e..3ec26cb 100644
--- a/engine-reflection/src/lib.rs
+++ b/engine-reflection/src/lib.rs
@@ -1,4 +1,5 @@
#![deny(clippy::all, clippy::pedantic)]
+#![allow(clippy::type_complexity)]
use std::alloc::Layout;
use std::any::{type_name, Any, TypeId};
use std::borrow::Cow;