mirror of
https://github.com/monero-project/monero.git
synced 2026-01-28 23:34:47 +01:00
thread_group: fix build with asserts enabled
See https://github.com/monero-project/monero/pull/1291
This commit is contained in:
@@ -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");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user