Skip to content

Commit 753ca9b

Browse files
committed
Please consider the following formatting changes
1 parent 6da2fc0 commit 753ca9b

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

Framework/Core/include/Framework/Configurable.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ template <typename Column>
9797
struct ConfigurableCCDBPath : Configurable<std::string> {
9898
ConfigurableCCDBPath()
9999
: Configurable<std::string>{std::string{"ccdb:"} + Column::mLabel,
100-
std::string{Column::query},
101-
std::string{"CCDB path for "} + Column::mLabel + " (default: " + Column::query + ")"}
100+
std::string{Column::query},
101+
std::string{"CCDB path for "} + Column::mLabel + " (default: " + Column::query + ")"}
102102
{
103103
}
104104
};

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
for (auto& opt : d.options) {
655655
if (opt.name == m.name) {
656656
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)