Skip to content

Commit f69b1f3

Browse files
committed
Please consider the following formatting changes
1 parent ba5e2db commit f69b1f3

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

Framework/Core/include/Framework/AnalysisHelpers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ struct Spawns : decltype(transformBase<T>()) {
672672

673673
std::shared_ptr<typename T::table_t> table = nullptr;
674674
std::shared_ptr<extension_t> extension = nullptr;
675-
std::array<o2::framework::expressions::Projector, N> projectors = []<typename... C>(framework::pack<C...>)->std::array<expressions::Projector, sizeof...(C)>
675+
std::array<o2::framework::expressions::Projector, N> projectors = []<typename... C>(framework::pack<C...>) -> std::array<expressions::Projector, sizeof...(C)>
676676
{
677677
return {{std::move(C::Projector())...}};
678678
}

Framework/Core/src/ArrowSupport.cxx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -654,8 +654,9 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec()
654654
effective = opt; // first task Configurable wins
655655
foundFirst = true;
656656
} else if (opt.defaultValue.asString() != effective.defaultValue.asString()) {
657-
LOGP(warn, "Task '{}' declares Configurable '{}' = '{}' which conflicts "
658-
"with an earlier value '{}'; earlier value will be used.",
657+
LOGP(warn,
658+
"Task '{}' declares Configurable '{}' = '{}' which conflicts "
659+
"with an earlier value '{}'; earlier value will be used.",
659660
d.name, opt.name, opt.defaultValue.asString(),
660661
effective.defaultValue.asString());
661662
}

0 commit comments

Comments
 (0)