Enable all warnings, turn the noisy ones back off, fix the others.

This commit is contained in:
Chris Marsh
2017-10-12 15:38:15 -07:00
parent 39ff0bf3e4
commit 6fa00223ad
6 changed files with 31 additions and 11 deletions

View File

@ -9,7 +9,7 @@
int GetProcessId()
{
return ::GetCurrentProcessId();
return (int)::GetCurrentProcessId();
}
struct BaseConnectionWin : public BaseConnection {
@ -125,4 +125,4 @@ bool BaseConnection::Read(void* data, size_t length)
Close();
}
return false;
}
}