1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Fix uninitialized variable warning. NFC.

This commit is contained in:
Simon Pilgrim 2019-11-18 12:05:40 +00:00
parent 4880637d79
commit ff4f330212

View File

@ -71,8 +71,7 @@ protected:
std::condition_variable WaitMainThread;
std::mutex WaitMainThreadMutex;
bool MainThreadReady;
bool MainThreadReady = false;
};
#define CHECK_UNSUPPORTED() \