mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-22 15:32:24 +00:00
Merge pull request #1312
acf908c
thread_group: fix build with asserts enabled (moneromooo-monero)
This commit is contained in:
commit
38727f7d2f
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ void thread_group::data::dispatch(std::function<void()> f) {
|
||||||
{
|
{
|
||||||
const std::unique_lock<std::mutex> lock(mutex);
|
const std::unique_lock<std::mutex> lock(mutex);
|
||||||
assert(last != nullptr);
|
assert(last != nullptr);
|
||||||
assert(last->next == nullptr);
|
assert(last->ptr == nullptr);
|
||||||
if (pending == std::numeric_limits<std::size_t>::max()) {
|
if (pending == std::numeric_limits<std::size_t>::max()) {
|
||||||
throw std::overflow_error("thread_group exceeded max queue depth");
|
throw std::overflow_error("thread_group exceeded max queue depth");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue