Skip to content

Commit b75155e

Browse files
authored
Fix T1HAGlobals define from true to NETSTANDARD2_0
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent d3e9e09 commit b75155e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HashifyNet/Algorithms/T1HA/T1HAGlobals.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ internal static class T1HAGlobals
5454
public const ulong PRIME_6 = 0xCB5AF53AE3AAAC31UL;
5555

5656

57-
#if true
57+
#if NETSTANDARD2_0
5858
[MethodImpl(MethodImplOptions.AggressiveInlining)]
5959
private static ulong BigMul_ref(ulong a, ulong b, out ulong low)
6060
{
@@ -87,3 +87,4 @@ public static void BigMul128(ulong x, ulong y, out ulong lo, out ulong hi)
8787
}
8888
}
8989
}
90+

0 commit comments

Comments
 (0)