Fix syntax error in NonBlockingThreadPool.h

This commit is contained in:
Rasmus Munk Larsen 2025-01-28 18:34:31 +00:00
parent a056b93114
commit 2a35a917be

View File

@ -158,7 +158,7 @@ class ThreadPoolTempl : public Eigen::ThreadPoolInterface {
PerThread* pt = GetPerThread();
Queue& q = thread_data_[pt->thread_id].queue;
*t = q.PopFront();
if (t->f != nullptr) return;
if (t->f) return;
if (num_threads_ == 1) {
// For num_threads_ == 1 there is no point in going through the expensive
// steal loop. Moreover, since NonEmptyQueueIndex() calls PopBack() on the