From 8879b6f66f6d79956ce6b023a61a0c798c8aed0e Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Sat, 13 Dec 2025 12:25:03 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/src/AnalysisSupportHelpers.cxx | 4 ++-- Framework/Core/src/WorkflowHelpers.cxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Framework/Core/src/AnalysisSupportHelpers.cxx b/Framework/Core/src/AnalysisSupportHelpers.cxx index 08d06602c4954..e59f36c72bdab 100644 --- a/Framework/Core/src/AnalysisSupportHelpers.cxx +++ b/Framework/Core/src/AnalysisSupportHelpers.cxx @@ -127,10 +127,10 @@ void AnalysisSupportHelpers::addMissingOutputsToReader(std::vector c DataProcessorSpec& publisher) { requestedInputs | - views::filter_not_matching(providedOutputs) | // filter the inputs that are already provided + views::filter_not_matching(providedOutputs) | // filter the inputs that are already provided views::filter_not_matching(publisher.outputs) | // filter the inputs that are already covered views::input_to_output_specs() | - sinks::append_to{publisher.outputs}; // append them to the publisher outputs + sinks::append_to{publisher.outputs}; // append them to the publisher outputs } void AnalysisSupportHelpers::addMissingOutputsToSpawner(std::vector const& providedSpecials, diff --git a/Framework/Core/src/WorkflowHelpers.cxx b/Framework/Core/src/WorkflowHelpers.cxx index 37f3cf4736246..02141678fec7c 100644 --- a/Framework/Core/src/WorkflowHelpers.cxx +++ b/Framework/Core/src/WorkflowHelpers.cxx @@ -315,7 +315,7 @@ void WorkflowHelpers::injectServiceDevices(WorkflowSpec& workflow, ConfigContext } break; case Lifetime::Condition: { requestedCCDBs.emplace_back(input); - if ((hasConditionOption == false) && std::none_of(processor.options.begin(), processor.options.end(), [](auto const& option){ return (option.name.compare("condition-backend") == 0); })) { + if ((hasConditionOption == false) && std::none_of(processor.options.begin(), processor.options.end(), [](auto const& option) { return (option.name.compare("condition-backend") == 0); })) { processor.options.emplace_back(ConfigParamSpec{"condition-backend", VariantType::String, defaultConditionBackend(), {"URL for CCDB"}}); processor.options.emplace_back(ConfigParamSpec{"condition-timestamp", VariantType::Int64, 0ll, {"Force timestamp for CCDB lookup"}}); hasConditionOption = true;