| 1682 | |
| 1683 | template<typename... Args> |
| 1684 | std::string strprintf(const char* format, const Args&... args) |
| 1685 | { |
| 1686 | return vstrprintf(format, args...); |
| 1687 | } |
| 1688 | #else |
| 1689 | std::string vstrprintf(const char* format, va_list vlist) |
| 1690 | { |
nothing calls this directly
no test coverage detected