Merge pull request #1312

acf908c thread_group: fix build with asserts enabled (moneromooo-monero)
release-v0.11.0.0
Riccardo Spagni 8 years ago
commit 38727f7d2f
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -151,7 +151,7 @@ void thread_group::data::dispatch(std::function<void()> f) {
{
const std::unique_lock<std::mutex> lock(mutex);
assert(last != nullptr);
assert(last->next == nullptr);
assert(last->ptr == nullptr);
if (pending == std::numeric_limits<std::size_t>::max()) {
throw std::overflow_error("thread_group exceeded max queue depth");
}

Loading…
Cancel
Save