mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Compilation fix
This commit is contained in:
parent
b897a5d20a
commit
a6754e29a6
1 changed files with 2 additions and 2 deletions
|
@ -740,8 +740,8 @@ void waiter_map_t::notify(u64 signal_id)
|
|||
}
|
||||
}
|
||||
|
||||
static const std::function<bool()> SQUEUE_ALWAYS_EXIT = [](){ return true; };
|
||||
static const std::function<bool()> SQUEUE_NEVER_EXIT = [](){ return false; };
|
||||
const std::function<bool()> SQUEUE_ALWAYS_EXIT = [](){ return true; };
|
||||
const std::function<bool()> SQUEUE_NEVER_EXIT = [](){ return false; };
|
||||
|
||||
bool squeue_test_exit()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue