| 10 | |
| 11 | template <typename... Args> |
| 12 | static void configError(fmt::string_view format_str, const Args&... args) |
| 13 | { |
| 14 | fmt::print(stderr, fmt::runtime(format_str), args...); |
| 15 | fputc('\n', stderr); |
| 16 | failed = true; |
| 17 | } |
| 18 | |
| 19 | template <> |
| 20 | struct fmt::formatter<std::vector<std::string>> |
no test coverage detected