Skip to content

Commit 153b261

Browse files
committed
Please consider the following formatting changes
1 parent d507b6e commit 153b261

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Framework/Core/src/AODReaderHelpers.cxx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ static inline auto extractOriginals(ProcessingContext& pc)
8383
return {pc.inputs().get<TableConsumer>(o2::aod::label<refs[Is]>())->asArrowTable()...};
8484
}(std::make_index_sequence<refs.size()>());
8585
}
86-
namespace {
86+
namespace
87+
{
8788
template <typename D>
8889
requires(D::exclusive)
8990
auto make_build(D metadata, InputSpec const& input, ProcessingContext& pc)
@@ -109,7 +110,7 @@ auto make_build(D metadata, InputSpec const& input, ProcessingContext& pc)
109110
extractOriginals<sources.size(), sources>(pc),
110111
index_pack_t{});
111112
}
112-
}
113+
} // namespace
113114

114115
AlgorithmSpec AODReaderHelpers::indexBuilderCallback(std::vector<InputSpec>& requested)
115116
{
@@ -149,7 +150,8 @@ AlgorithmSpec AODReaderHelpers::indexBuilderCallback(std::vector<InputSpec>& req
149150
}};
150151
}
151152

152-
namespace{
153+
namespace
154+
{
153155
template <o2::aod::is_aod_hash D>
154156
auto make_spawn(InputSpec const& input, ProcessingContext& pc)
155157
{
@@ -158,7 +160,7 @@ auto make_spawn(InputSpec const& input, ProcessingContext& pc)
158160
static std::shared_ptr<gandiva::Projector> projector = nullptr;
159161
return o2::framework::spawner<D>(extractOriginals<sources.size(), sources>(pc), input.binding.c_str(), projector);
160162
}
161-
}
163+
} // namespace
162164

163165
AlgorithmSpec AODReaderHelpers::aodSpawnerCallback(std::vector<InputSpec>& requested)
164166
{

0 commit comments

Comments
 (0)