Whitespaces

This commit is contained in:
Alexey Milovidov 2020-02-24 00:45:31 +03:00
parent 08f1d243b2
commit dbfbc38fe8

View File

@ -690,14 +690,14 @@ void PipelineExecutor::executeImpl(size_t num_threads)
bool finished_flag = false;
SCOPE_EXIT(
if (!finished_flag)
{
finish();
if (!finished_flag)
{
finish();
for (auto & thread : threads)
if (thread.joinable())
thread.join();
}
for (auto & thread : threads)
if (thread.joinable())
thread.join();
}
);
addChildlessProcessorsToStack(stack);