Skip to content

Commit 5fb080c

Browse files
authored
Merge pull request #74 from alibuild/alibot-cleanup-13839
2 parents e8ff6cc + 89d8004 commit 5fb080c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Framework/Core/include/Framework/GroupSlicer.h

Lines changed: 8 additions & 8 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>
@@ -75,7 +75,7 @@ struct GroupSlicer {
7575
}
7676

7777
template <typename T>
78-
requires (soa::is_filtered_table<std::decay_t<T>>)
78+
requires(soa::is_filtered_table<std::decay_t<T>>)
7979
auto extractingFunction(T&& table)
8080
{
8181
constexpr auto index = framework::has_type_at_v<std::decay_t<T>>(associated_pack_t{});
@@ -159,7 +159,7 @@ struct GroupSlicer {
159159
}
160160

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

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

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

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

0 commit comments

Comments
 (0)