Skip to content

Commit cdc7428

Browse files
committed
patch for gcc-13
1 parent c5d3b57 commit cdc7428

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
## RcppParallel 5.1.6 (UNRELEASED)
33

4+
* Patch for TBB to allow compilation with gcc-13.
5+
46
* Fixed a memory leak that could occur when using TinyThread on POSIX systems.
57
(#185; @dipertix and and @kevinushey)
68

src/tbb/include/tbb/task.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ namespace internal {
230230
#if __TBB_TASK_PRIORITY
231231
//! Pointer to the next offloaded lower priority task.
232232
/** Used to maintain a list of offloaded tasks inside the scheduler. **/
233-
task* next_offloaded;
233+
tbb::task* next_offloaded;
234234
};
235235
#endif /* __TBB_TASK_PRIORITY */
236236

0 commit comments

Comments
 (0)