From 2cc71f4101c8ad94b5cbe42ed6b4a7a08200f9c2 Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Sat, 5 Dec 2020 21:48:22 +0100 Subject: [PATCH] fix build --- tests/ImageSharp.Tests/Common/SimdUtilsTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ImageSharp.Tests/Common/SimdUtilsTests.cs b/tests/ImageSharp.Tests/Common/SimdUtilsTests.cs index 0ee43d74b..1f680aa6c 100644 --- a/tests/ImageSharp.Tests/Common/SimdUtilsTests.cs +++ b/tests/ImageSharp.Tests/Common/SimdUtilsTests.cs @@ -5,9 +5,9 @@ using System; using System.Linq; using System.Numerics; using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; +#if SUPPORTS_RUNTIME_INTRINSICS using System.Runtime.Intrinsics.X86; -using SixLabors.ImageSharp.Common.Tuples; +#endif using SixLabors.ImageSharp.PixelFormats; using SixLabors.ImageSharp.Tests.TestUtilities; using Xunit;