Skip to content

Commit 4ed65b8

Browse files
add back unsafe for mono
1 parent e1c1ade commit 4ed65b8

File tree

1 file changed

+1
-1
lines changed
  • src/libraries/System.Private.CoreLib/src/System

1 file changed

+1
-1
lines changed

src/libraries/System.Private.CoreLib/src/System/Math.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ internal static ulong BigMul(uint a, ulong b, out ulong low)
200200
/// <returns>The high 64-bit of the product of the specified numbers.</returns>
201201
[CLSCompliant(false)]
202202
[MethodImpl(MethodImplOptions.AggressiveInlining)]
203-
public static ulong BigMul(ulong a, ulong b, out ulong low)
203+
public static unsafe ulong BigMul(ulong a, ulong b, out ulong low)
204204
{
205205
#if MONO // Multiply is not yet implemented in MONO
206206
if (Bmi2.X64.IsSupported)

0 commit comments

Comments
 (0)