Skip to content

Commit 14d6d4e

Browse files
authored
Merge pull request #90 from alibuild/alibot-cleanup-14172
2 parents 1b5e18e + 11ceeb0 commit 14d6d4e

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

Framework/Core/include/Framework/AnalysisHelpers.h

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,14 @@ template <TableRef R>
3131
constexpr auto tableRef2ConfigParamSpec()
3232
{
3333
return o2::framework::ConfigParamSpec{
34-
std::string{"input:"} + o2::aod::label<R>(),
35-
framework::VariantType::String,
36-
aod::sourceSpec<R>(),
37-
{"\"\""}};
34+
std::string{"input:"} + o2::aod::label<R>(),
35+
framework::VariantType::String,
36+
aod::sourceSpec<R>(),
37+
{"\"\""}};
3838
}
3939

40-
namespace {
40+
namespace
41+
{
4142
template <soa::with_sources T>
4243
inline constexpr auto getSources()
4344
{
@@ -66,7 +67,7 @@ constexpr auto getInputMetadata() -> std::vector<framework::ConfigParamSpec>
6667
{
6768
return {};
6869
}
69-
}
70+
} // namespace
7071

7172
template <TableRef R>
7273
constexpr auto tableRef2InputSpec()

Framework/Core/src/WorkflowHelpers.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -387,11 +387,11 @@ void WorkflowHelpers::injectServiceDevices(WorkflowSpec& workflow, ConfigContext
387387
std::sort(ac.providedDYNs.begin(), ac.providedDYNs.end(), outputSpecLessThan);
388388

389389
DataProcessorSpec indexBuilder{
390-
"internal-dpl-aod-index-builder",
391-
{},
392-
{},
393-
readers::AODReaderHelpers::indexBuilderCallback(ac.requestedIDXs),
394-
{}};
390+
"internal-dpl-aod-index-builder",
391+
{},
392+
{},
393+
readers::AODReaderHelpers::indexBuilderCallback(ac.requestedIDXs),
394+
{}};
395395
AnalysisSupportHelpers::addMissingOutputsToBuilder(ac.requestedIDXs, ac.requestedAODs, ac.requestedDYNs, indexBuilder);
396396

397397
for (auto& input : ac.requestedDYNs) {

0 commit comments

Comments
 (0)