We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2e0f3d commit 566c927Copy full SHA for 566c927
1 file changed
Framework/Core/include/Framework/GroupedCombinations.h
@@ -41,6 +41,7 @@ template <typename G, typename A>
41
expressions::BindingNode getMatchingIndexNode()
42
{
43
using external_index_columns_pack = typename A::external_index_columns_t;
44
+ static_assert(pack_size(external_index_columns_pack{}) > 0, "No external indices");
45
using selected_indices_t = selected_pack_multicondition<is_index_to_g_t, pack<G>, external_index_columns_pack>;
46
static_assert(pack_size(selected_indices_t{}) == 1, "No matching index column from associated to grouping");
47
using index_column_t = pack_head_t<selected_indices_t>;
0 commit comments