diff options
| author | HampusM <hampus@hampusmat.com> | 2026-09-22 18:17:41 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-09-22 18:17:41 +0200 |
| commit | 2ccda0cd5f81909fddc74d95f960f781a64bcae1 (patch) | |
| tree | a55900877675a24b5fd219009b8174cab60b49fe /engine-reflection/src | |
| parent | d93535128d5422977eccebee1cfacea2281fd078 (diff) | |
refactor(engine-reflection): allow type complexity clippy lint
Diffstat (limited to 'engine-reflection/src')
| -rw-r--r-- | engine-reflection/src/lib.rs | 1 |
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; |
