From 21b6eb40b70e606d6fd1b63f6976c7897b3f3b48 Mon Sep 17 00:00:00 2001 From: Ullrich Praetz Date: Fri, 22 Nov 2024 11:15:40 +0100 Subject: [PATCH] Suppress AOT warning --- src/ECS/Index/Utils/ComponentIndexUtils.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ECS/Index/Utils/ComponentIndexUtils.cs b/src/ECS/Index/Utils/ComponentIndexUtils.cs index 1bcde7515..c5dd12fbc 100644 --- a/src/ECS/Index/Utils/ComponentIndexUtils.cs +++ b/src/ECS/Index/Utils/ComponentIndexUtils.cs @@ -40,6 +40,7 @@ internal static Type GetIndexType(Type componentType, out Type valueType) } [UnconditionalSuppressMessage("ReflectionAnalysis", "IL2055", Justification = "TODO")] // TODO + [UnconditionalSuppressMessage("ReflectionAnalysis", "IL2065", Justification = "TODO")] // TODO [UnconditionalSuppressMessage("ReflectionAnalysis", "IL2070", Justification = "TODO")] // TODO [UnconditionalSuppressMessage("ReflectionAnalysis", "IL3050", Justification = "TODO")] // TODO private static Type MakeIndexType(Type valueType, Type componentType)