| 254 | */ |
| 255 | template<int N, std::size_t... Indices> |
| 256 | constexpr std::array<ParamType, sizeof...(Indices)> |
| 257 | analyzeFormatStringHelper(const char (&fmt)[N], std::index_sequence<Indices...>) |
| 258 | { |
| 259 | return {{ getParamInfo(fmt, Indices)... }}; |
| 260 | } |
| 261 | |
| 262 | |
| 263 | /** |
no test coverage detected