Fix nullability of return type

This commit is contained in:
YoshiRulz 2020-05-26 13:46:54 +10:00
parent 02a70a4457
commit 7ae94c4300
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 3 deletions

View File

@ -5,10 +5,10 @@ namespace BizHawk.Common
{
public static class Mershul
{
/// <summary>
/// <remarks>
/// TODO: Update to a version of .nyet that includes this
/// </summary>
public static unsafe string PtrToStringUtf8(IntPtr p)
/// </remarks>
public static unsafe string? PtrToStringUtf8(IntPtr p)
{
if (p == IntPtr.Zero)
return null;