Skip to content

Commit 1e2b5b1

Browse files
committed
fixup! split splitting and extracting functions
1 parent 703773d commit 1e2b5b1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Framework/Core/include/Framework/GroupSlicer.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ struct GroupSlicer {
5050
}
5151

5252
template <typename T>
53-
requires (o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<T>>())
53+
requires(o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<T>>())
5454
auto splittingFunction(T&& table)
5555
{
5656
constexpr auto index = framework::has_type_at_v<std::decay_t<T>>(associated_pack_t{});
@@ -66,7 +66,7 @@ struct GroupSlicer {
6666
return;
6767
}
6868
sliceInfosUnsorted[index] = mSlices->getCacheUnsortedFor(bk);
69-
}
69+
}
7070
}
7171

7272
template <typename T>
@@ -158,7 +158,7 @@ struct GroupSlicer {
158158
}
159159

160160
template <soa::is_smallgroups A1>
161-
requires (o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && soa::is_filtered_table<A1>)
161+
requires(o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && soa::is_filtered_table<A1>)
162162
auto prepareArgument()
163163
{
164164
constexpr auto index = framework::has_type_at_v<A1>(associated_pack_t{});
@@ -191,8 +191,8 @@ struct GroupSlicer {
191191
return typedTable;
192192
}
193193

194-
template <soa::is_filtered_table A1>
195-
requires (o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && !soa::is_smallgroups<A1>)
194+
template <soa::is_filtered_table A1>
195+
requires(o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && !soa::is_smallgroups<A1>)
196196
auto prepareArgument()
197197
{
198198
constexpr auto index = framework::has_type_at_v<A1>(associated_pack_t{});
@@ -231,7 +231,7 @@ struct GroupSlicer {
231231
}
232232

233233
template <soa::is_table A1>
234-
requires (o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && !soa::is_smallgroups<A1> && !soa::is_filtered_table<A1>)
234+
requires(o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && !soa::is_smallgroups<A1> && !soa::is_filtered_table<A1>)
235235
auto prepareArgument()
236236
{
237237
constexpr auto index = framework::has_type_at_v<A1>(associated_pack_t{});
@@ -255,7 +255,7 @@ struct GroupSlicer {
255255
}
256256

257257
template <soa::is_table A1>
258-
requires (!o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && !soa::is_smallgroups<A1>)
258+
requires(!o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && !soa::is_smallgroups<A1>)
259259
auto prepareArgument()
260260
{
261261
return std::get<A1>(*mAt);

0 commit comments

Comments
 (0)