Fixing some particularly bad /W4.

This commit is contained in:
Ben Vanik
2015-07-18 23:04:21 -07:00
parent 4128727f6b
commit 91d7acf59e
34 changed files with 123 additions and 125 deletions

View File

@@ -110,11 +110,11 @@ class Debugger {
Emulator* emulator_ = nullptr;
uintptr_t listen_socket_ = ~0;
uintptr_t listen_socket_ = ~0u;
bool accept_thread_running_ = false;
std::thread accept_thread_;
xe::threading::Fence accept_fence_;
uintptr_t client_socket_ = ~0;
uintptr_t client_socket_ = ~0u;
std::thread receive_thread_;
std::wstring functions_path_;