Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Make methods public
Browse files Browse the repository at this point in the history
  • Loading branch information
benaadams committed Oct 16, 2019
1 parent 18a0ca8 commit 840f881
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ public static IntPtr ByteOffset<T>(ref T origin, ref T target)
[Intrinsic]
[NonVersionable]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static ref T NullRef<T>()
public static ref T NullRef<T>()
{
#if CORECLR
throw new PlatformNotSupportedException();
Expand All @@ -417,7 +417,7 @@ internal static ref T NullRef<T>()
[Intrinsic]
[NonVersionable]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static bool IsNullRef<T>(ref T source)
public static bool IsNullRef<T>(ref T source)
{
#if CORECLR
throw new PlatformNotSupportedException();
Expand Down

0 comments on commit 840f881

Please sign in to comment.