| 2344 | } |
| 2345 | |
| 2346 | template <typename Char, typename T> auto check_enabled_formatter() -> bool { |
| 2347 | static_assert(std::is_default_constructible<fmt::formatter<T, Char>>::value, |
| 2348 | ""); |
| 2349 | return true; |
| 2350 | } |
| 2351 | |
| 2352 | template <typename Char, typename... T> void check_enabled_formatters() { |
| 2353 | auto dummy = {check_enabled_formatter<Char, T>()...}; |
nothing calls this directly
no outgoing calls
no test coverage detected