Compilation fix

This commit is contained in:
Nekotekina 2015-01-17 19:36:23 +03:00
parent b897a5d20a
commit a6754e29a6
1 changed files with 2 additions and 2 deletions

View File

@ -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()
{