We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5d3b57 commit cdc7428Copy full SHA for cdc7428
NEWS.md
@@ -1,6 +1,8 @@
1
2
## RcppParallel 5.1.6 (UNRELEASED)
3
4
+* Patch for TBB to allow compilation with gcc-13.
5
+
6
* Fixed a memory leak that could occur when using TinyThread on POSIX systems.
7
(#185; @dipertix and and @kevinushey)
8
src/tbb/include/tbb/task.h
@@ -230,7 +230,7 @@ namespace internal {
230
#if __TBB_TASK_PRIORITY
231
//! Pointer to the next offloaded lower priority task.
232
/** Used to maintain a list of offloaded tasks inside the scheduler. **/
233
- task* next_offloaded;
+ tbb::task* next_offloaded;
234
};
235
#endif /* __TBB_TASK_PRIORITY */
236
0 commit comments