Skip to content

Commit afb3d78

Browse files
committed
Add decay
1 parent 5ed14e3 commit afb3d78

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/Core/include/Framework/AnalysisManagers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ void setGroupedCombination(C&, TG&, Ts&...)
575575
template <is_combinations_generator C, typename TG, typename... Ts>
576576
static void setGroupedCombination(C& comb, TG& grouping, std::tuple<Ts...>& associated)
577577
{
578-
if constexpr (std::same_as<typename C::g_t, std::decay_t<TG>> && (has_type_v<Ts, typename C::associated_pack_t> && ...)) {
578+
if constexpr (std::same_as<typename C::g_t, std::decay_t<TG>> && (has_type_v<std::decay_t<Ts>, typename C::associated_pack_t> && ...)) {
579579
comb.setTables(grouping, associated);
580580
}
581581
}

0 commit comments

Comments
 (0)