Work around GCC test failure.

llvm-svn: 359065
This commit is contained in:
Eric Fiselier 2019-04-24 02:21:13 +00:00
parent 39a2d20a0f
commit 27fd2f60ee
1 changed files with 2 additions and 2 deletions

View File

@ -96,13 +96,13 @@ struct NopMutex {
private:
bool is_locked = false;
};
static NopMutex global_nop_mutex = {};
NopMutex global_nop_mutex = {};
struct NopCondVar {
bool broadcast() { return false; }
bool wait(NopMutex&) { return false; }
};
static NopCondVar global_nop_cond = {};
NopCondVar global_nop_cond = {};
void NopFutexWait(int*, int) { assert(false); }
void NopFutexWake(int*) { assert(false); }