Skip to content

Commit

Permalink
fixup! DPL Analysis: remove unnecessary instances of selected_pack
Browse files Browse the repository at this point in the history
  • Loading branch information
aalkin committed Jan 23, 2025
1 parent 439f56e commit 3db6aa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Framework/Core/include/Framework/GroupedCombinations.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ auto interleaveTuples(std::tuple<T1s...>& t1, std::tuple<T2s...>& t2)

template <soa::is_index_column T, typename G>
requires(!soa::is_self_index_column<T>)
constexpr auto isIndexTo()
consteval auto isIndexTo()
{
if constexpr (o2::soa::is_binding_compatible_v<G, typename T::binding_t>()) {
return std::true_type{};
Expand All @@ -46,7 +46,7 @@ constexpr auto isIndexTo()
}

template <typename T, typename G>
constexpr auto isIndexTo()
consteval auto isIndexTo()
{
return std::false_type{};
}
Expand Down

0 comments on commit 3db6aa7

Please sign in to comment.