| 2350 | } |
| 2351 | |
| 2352 | template <typename Char, typename... T> void check_enabled_formatters() { |
| 2353 | auto dummy = {check_enabled_formatter<Char, T>()...}; |
| 2354 | (void)dummy; |
| 2355 | } |
| 2356 | |
| 2357 | TEST(format_test, test_formatters_enabled) { |
| 2358 | using custom_string = |
nothing calls this directly
no outgoing calls
no test coverage detected