@@ -494,7 +494,7 @@ void WorkflowHelpers::injectServiceDevices(WorkflowSpec& workflow, ConfigContext
494494 // Check if any of the requested inputs is for a 0xccdb message
495495 bool providesDISTSTF = std::any_of (workflow.begin (), workflow.end (),
496496 [&matcher](auto const & dp) {
497- return std::any_of (dp.outputs .begin (), dp.outputs .end (), [&matcher](auto const & output){
497+ return std::any_of (dp.outputs .begin (), dp.outputs .end (), [&matcher](auto const & output) {
498498 return DataSpecUtils::match (matcher, output);
499499 });
500500 });
@@ -503,8 +503,8 @@ void WorkflowHelpers::injectServiceDevices(WorkflowSpec& workflow, ConfigContext
503503 // we add to the first data processor which has no inputs (apart from
504504 // enumerations / timers) the responsibility to provide the DISTSUBTIMEFRAME
505505 bool requiresDISTSUBTIMEFRAME = std::any_of (workflow.begin (), workflow.end (),
506- [&dstf](auto const & dp) {
507- return std::any_of (dp.inputs .begin (), dp.inputs .end (), [&dstf](auto const & input){
506+ [&dstf](auto const & dp) {
507+ return std::any_of (dp.inputs .begin (), dp.inputs .end (), [&dstf](auto const & input) {
508508 return DataSpecUtils::match (input, dstf);
509509 });
510510 });
@@ -522,7 +522,7 @@ void WorkflowHelpers::injectServiceDevices(WorkflowSpec& workflow, ConfigContext
522522 }
523523 auto lifetime = dp.inputs [0 ].lifetime ;
524524 if (lifetime == Lifetime::Enumeration && (enumCandidate == -1 || workflow[enumCandidate].name > dp.name )) {
525- enumCandidate = wi;
525+ enumCandidate = wi;
526526 }
527527 if (lifetime == Lifetime::Timer && (timerCandidate == -1 || workflow[timerCandidate].name > dp.name )) {
528528 timerCandidate = wi;
0 commit comments