Skip to content

Commit

Permalink
Fix compilation error in VS 17.3.1 (#69994)
Browse files Browse the repository at this point in the history
I believe this is related to latest changes in Roslyn.
Similar to dotnet/winforms#7220
  • Loading branch information
kant2002 authored Jun 1, 2022
1 parent 2adf205 commit b098b6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1864,7 +1864,7 @@ private void getGSCookie(IntPtr* pCookieVal, IntPtr** ppCookieVal)
}
else
{
*pCookieVal = (IntPtr)0x216D6F6D202C6948;
*pCookieVal = unchecked((IntPtr)0x216D6F6D202C6948);
}
*ppCookieVal = null;
}
Expand Down

0 comments on commit b098b6f

Please sign in to comment.