| 203 | |
| 204 | template <typename... Args> |
| 205 | static void print(fmt::format_string<Args...> format, Args&& ... args) |
| 206 | { |
| 207 | color_ostream_proxy proxy(getInstance().con); |
| 208 | proxy.print(format, std::forward<Args>(args)...); |
| 209 | } |
| 210 | |
| 211 | template <typename... Args> |
| 212 | static void printerr(fmt::format_string<Args...> format, Args&& ... args) |
no test coverage detected