Skip to content
Snippets Groups Projects
Commit 635b3015 authored by Frank Gaede's avatar Frank Gaede Committed by Marko Petric
Browse files

fix compilation of DigiKernel.cpp w/ TBB

parent 52d0bb77
No related branches found
No related tags found
No related merge requests found
...@@ -273,7 +273,7 @@ void DigiKernel::submit(const DigiAction::Actors<DigiEventAction>& actions, Digi ...@@ -273,7 +273,7 @@ void DigiKernel::submit(const DigiAction::Actors<DigiEventAction>& actions, Digi
if ( parallel ) { if ( parallel ) {
tbb::task_group que; tbb::task_group que;
for ( auto* i : actions ) for ( auto* i : actions )
que.run(Wrapper(context, *i)); que.run(Wrapper(context, i));
que.wait(); que.wait();
goto print_stamp; goto print_stamp;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment