| 75 | |
| 76 | template <class... ARGS> |
| 77 | std::string format_string(const char* fmt, ARGS&&... args) { |
| 78 | std::string str; |
| 79 | format_string_append(str, fmt, args...); |
| 80 | return str; |
| 81 | } |
| 82 | |
| 83 | template <class... ARGS> |
| 84 | std::string format_string(const std::string& fmt, ARGS&&... args) { |
no test coverage detected