blob: e251df38439b1f00b680d1e2572f05d296da2c88 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
struct TArgs_brin_desummarize_range_Policy {
static constexpr bool VarArgs = false;
static constexpr std::array<bool, 2> IsFixedArg = {true,true};
};
struct TArgs_brin_summarize_new_values_Policy {
static constexpr bool VarArgs = false;
static constexpr std::array<bool, 1> IsFixedArg = {true};
};
struct TArgs_brin_summarize_range_Policy {
static constexpr bool VarArgs = false;
static constexpr std::array<bool, 2> IsFixedArg = {true,true};
};
struct TArgs_brinhandler_Policy {
static constexpr bool VarArgs = false;
static constexpr std::array<bool, 1> IsFixedArg = {true};
};
|