diff --git a/Framework/Core/include/Framework/AnalysisHelpers.h b/Framework/Core/include/Framework/AnalysisHelpers.h index cfd2f357ba06f..07502fa940da5 100644 --- a/Framework/Core/include/Framework/AnalysisHelpers.h +++ b/Framework/Core/include/Framework/AnalysisHelpers.h @@ -672,7 +672,7 @@ struct Spawns : decltype(transformBase()) { std::shared_ptr table = nullptr; std::shared_ptr extension = nullptr; - std::array projectors = [](framework::pack)->std::array + std::array projectors = [](framework::pack) -> std::array { return {{std::move(C::Projector())...}}; } diff --git a/Framework/Core/src/ArrowSupport.cxx b/Framework/Core/src/ArrowSupport.cxx index eecff4ce87c74..8378218c5f1ba 100644 --- a/Framework/Core/src/ArrowSupport.cxx +++ b/Framework/Core/src/ArrowSupport.cxx @@ -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()); }