tbb/tbb-2020-task-namespace.patch
Thomas W Rodgers 32024d134b Remove errant tab in patch
Matches upstream formatting conventions
2023-01-17 09:33:58 -08:00

26 lines
746 B
Diff

From 83460cd9c2df678bd05efbbbe5cd2c9f733ece2b Mon Sep 17 00:00:00 2001
From: Thomas W Rodgers <rodgert@twrodgers.com>
Date: Mon, 16 Jan 2023 17:20:37 -0800
Subject: [PATCH] Fix FTBS with newer GCC
---
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 5e137c6..b5fb1ac 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
--
2.39.0