| 326 | void Print(const string &str); |
| 327 | template <typename... ARGS> |
| 328 | void PrintF(PrintOutput stream, const string &str, ARGS... params) { |
| 329 | Print(stream, StringUtil::Format(str, params...)); |
| 330 | } |
| 331 | template <typename... ARGS> |
| 332 | void PrintF(const string &str, ARGS... params) { |
| 333 | PrintF(PrintOutput::STDOUT, str, std::forward<ARGS>(params)...); |
no outgoing calls
no test coverage detected