Skip to content

Commit 703773d

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

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Framework/Core/include/Framework/GroupSlicer.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ struct GroupSlicer {
7474
{
7575
}
7676

77-
template <typename T>
78-
requires (soa::is_filtered_table<std::decay_t<T>>)
77+
template <soa::is_filtered_table T>
7978
auto extractingFunction(T&& table)
8079
{
8180
constexpr auto index = framework::has_type_at_v<std::decay_t<T>>(associated_pack_t{});
@@ -159,7 +158,7 @@ struct GroupSlicer {
159158
}
160159

161160
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>>)
161+
requires (o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && soa::is_filtered_table<A1>)
163162
auto prepareArgument()
164163
{
165164
constexpr auto index = framework::has_type_at_v<A1>(associated_pack_t{});

0 commit comments

Comments
 (0)