Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please consider the following formatting changes to #13839 #77

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Framework/Core/include/Framework/GroupSlicer.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ struct GroupSlicer {
}

template <typename T>
requires (o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<T>>())
requires(o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<T>>())
auto splittingFunction(T&& table)
{
constexpr auto index = framework::has_type_at_v<std::decay_t<T>>(associated_pack_t{});
Expand All @@ -66,7 +66,7 @@ struct GroupSlicer {
return;
}
sliceInfosUnsorted[index] = mSlices->getCacheUnsortedFor(bk);
}
}
}

template <typename T>
Expand Down Expand Up @@ -158,7 +158,7 @@ struct GroupSlicer {
}

template <soa::is_smallgroups A1>
requires (o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && soa::is_filtered_table<A1>)
requires(o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && soa::is_filtered_table<A1>)
auto prepareArgument()
{
constexpr auto index = framework::has_type_at_v<A1>(associated_pack_t{});
Expand Down Expand Up @@ -191,8 +191,8 @@ struct GroupSlicer {
return typedTable;
}

template <soa::is_filtered_table A1>
requires (o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && !soa::is_smallgroups<A1>)
template <soa::is_filtered_table A1>
requires(o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && !soa::is_smallgroups<A1>)
auto prepareArgument()
{
constexpr auto index = framework::has_type_at_v<A1>(associated_pack_t{});
Expand Down Expand Up @@ -231,7 +231,7 @@ struct GroupSlicer {
}

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

template <soa::is_table A1>
requires (!o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && !soa::is_smallgroups<A1>)
requires(!o2::soa::relatedByIndex<std::decay_t<G>, std::decay_t<A1>>() && !soa::is_smallgroups<A1>)
auto prepareArgument()
{
return std::get<A1>(*mAt);
Expand Down
Loading