| 282 | */ |
| 283 | template<int NParams, size_t N> |
| 284 | constexpr std::array<ParamType, NParams> |
| 285 | analyzeFormatString(const char (&fmt)[N]) |
| 286 | { |
| 287 | return analyzeFormatStringHelper(fmt, std::make_index_sequence<NParams>{}); |
| 288 | } |
| 289 | |
| 290 | /** |
| 291 | * Counts the number of parameters that need to be passed in for a particular |
nothing calls this directly
no test coverage detected