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.
2 parents c8beeaf + 5c54b7e commit 0c13850Copy full SHA for 0c13850
lib/tbb_2020.3/STAN_CHANGES
@@ -13,4 +13,5 @@ This file documents changes done for the stan-math project
13
- build/windows.gcc.inc
14
- L84 Wrapped the use of `-flifetime-dse` flag in conditional on non-WINARM64
15
- L101 Wrapped the use of `-msse` in conditional on non-WINARM64
16
-
+
17
+- Added variants to the `kind_type` enum to prevent creation of out-of-range values
lib/tbb_2020.3/include/tbb/task.h
@@ -376,7 +376,10 @@ class task_group_context : internal::no_copy {
376
public:
377
enum kind_type {
378
isolated,
379
- bound
+ bound,
380
+ kind_complete,
381
+ kind_detached,
382
+ kind_dying
383
};
384
385
enum traits_type {
0 commit comments