Skip to content

Commit 99e0644

Browse files
authored
Merge pull request #116 from alibuild/alibot-cleanup-14898
2 parents add19cb + b432e07 commit 99e0644

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Framework/Core/src/WorkflowHelpers.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)