Consider a thread done if current_work is null

This commit is contained in:
Lyuma 2021-06-17 05:22:43 -07:00
parent dd39855c0a
commit c21aa9196e

View file

@ -105,7 +105,7 @@ public:
}
bool is_done_dispatching() const {
ERR_FAIL_COND_V(current_work == nullptr, false);
ERR_FAIL_COND_V(current_work == nullptr, true);
return index.load(std::memory_order_acquire) >= current_work->max_elements;
}