1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

#unwarn on unused variable

This commit is contained in:
Brian Fiete 2025-05-10 12:52:25 +02:00
parent 262d3179b1
commit e088ce1365

View file

@ -494,8 +494,8 @@ namespace System.Net
int32 size = sizeof(SockAddr_in6);
if (bind(mHandle, &service, size) == SOCKET_ERROR)
{
#unwarn
int err = WSAGetLastError();
Close();
return .Err;
}