From 4d0aab224fa7632e8c4230c538ebac864a17ee98 Mon Sep 17 00:00:00 2001 From: Theodore Tsirpanis Date: Thu, 3 Aug 2023 20:57:38 +0300 Subject: [PATCH] Remove `[FixedAddressValueType]`. --- src/Standart.Hash.xxHash/xxHash128.XXH.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Standart.Hash.xxHash/xxHash128.XXH.cs b/src/Standart.Hash.xxHash/xxHash128.XXH.cs index c1bb5a7..90cb83b 100644 --- a/src/Standart.Hash.xxHash/xxHash128.XXH.cs +++ b/src/Standart.Hash.xxHash/xxHash128.XXH.cs @@ -30,9 +30,7 @@ public static partial class xxHash128 private static readonly byte MM_SHUFFLE_0_3_0_1 = 0b0011_0001; private static readonly byte MM_SHUFFLE_1_0_3_2 = 0b0100_1110; - [FixedAddressValueType] private static readonly Vector256 M256i_XXH_PRIME32_1 = Vector256.Create(XXH_PRIME32_1); - [FixedAddressValueType] private static readonly Vector128 M128i_XXH_PRIME32_1 = Vector128.Create(XXH_PRIME32_1); @@ -138,4 +136,4 @@ private static unsafe void XXH_writeLE64(byte* dst, ulong v64) *(ulong*) dst = v64; } } -} \ No newline at end of file +}