From b236385a84b7fa1d0ec384056c8c03291ab7c193 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Thu, 19 Feb 2026 13:59:21 +0100 Subject: [PATCH] Compilation fix for newer compiler versions --- include/tbb/task.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tbb/task.h b/include/tbb/task.h index d58fb36..093ebf2 100644 --- a/include/tbb/task.h +++ b/include/tbb/task.h @@ -249,7 +249,7 @@ namespace internal { #if __TBB_TASK_PRIORITY //! Pointer to the next offloaded lower priority task. /** Used to maintain a list of offloaded tasks inside the scheduler. **/ - task* next_offloaded; + tbb::task* next_offloaded; #endif #if __TBB_PREVIEW_RESUMABLE_TASKS