Skip to content

Commit 7ceab2b

Browse files
committed
Removed Vector128 polyfill
1 parent 8bcebe1 commit 7ceab2b

File tree

4 files changed

+4
-94
lines changed

4 files changed

+4
-94
lines changed

src/ZstdSharp/Polyfills/Vector128.cs

Lines changed: 0 additions & 54 deletions
This file was deleted.

src/ZstdSharp/Polyfills/Vector128_1.cs

Lines changed: 0 additions & 36 deletions
This file was deleted.

src/ZstdSharp/Unsafe/ZstdInternal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using static ZstdSharp.UnsafeHelper;
22
using System;
33
using System.Runtime.InteropServices;
4+
using System.Runtime.CompilerServices;
45
#if NETCOREAPP3_0_OR_GREATER
56
using System.Runtime.Intrinsics.X86;
67
#endif
7-
using System.Runtime.CompilerServices;
88
#if NET5_0_OR_GREATER
99
using System.Runtime.Intrinsics.Arm;
1010
#endif

src/ZstdSharp/Unsafe/ZstdLazy.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
using static ZstdSharp.UnsafeHelper;
22
using System.Runtime.CompilerServices;
3-
using System.Runtime.Intrinsics;
3+
using System.Numerics;
4+
using System;
45
#if NETCOREAPP3_0_OR_GREATER
6+
using System.Runtime.Intrinsics;
57
using System.Runtime.Intrinsics.X86;
68
#endif
7-
using System.Numerics;
89
#if NET5_0_OR_GREATER
910
using System.Runtime.Intrinsics.Arm;
1011
#endif
11-
using System;
1212

1313
namespace ZstdSharp.Unsafe
1414
{

0 commit comments

Comments
 (0)