Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/AnalysisHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ struct Spawns : decltype(transformBase<T>()) {

std::shared_ptr<typename T::table_t> table = nullptr;
std::shared_ptr<extension_t> extension = nullptr;
std::array<o2::framework::expressions::Projector, N> projectors = []<typename... C>(framework::pack<C...>)->std::array<expressions::Projector, sizeof...(C)>
std::array<o2::framework::expressions::Projector, N> projectors = []<typename... C>(framework::pack<C...>) -> std::array<expressions::Projector, sizeof...(C)>
{
return {{std::move(C::Projector())...}};
}
Expand Down
5 changes: 3 additions & 2 deletions Framework/Core/src/ArrowSupport.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,9 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec()
effective = opt; // first task Configurable wins
foundFirst = true;
} else if (opt.defaultValue.asString() != effective.defaultValue.asString()) {
LOGP(warn, "Task '{}' declares Configurable '{}' = '{}' which conflicts "
"with an earlier value '{}'; earlier value will be used.",
LOGP(warn,
"Task '{}' declares Configurable '{}' = '{}' which conflicts "
"with an earlier value '{}'; earlier value will be used.",
d.name, opt.name, opt.defaultValue.asString(),
effective.defaultValue.asString());
}
Expand Down