| 1674 | #if LOGURU_USE_FMTLIB |
| 1675 | template<typename... Args> |
| 1676 | std::string vstrprintf(const char* format, const Args&... args) |
| 1677 | { |
| 1678 | auto text = textprintf(format, args...); |
| 1679 | std::string result = text.c_str(); |
| 1680 | return result; |
| 1681 | } |
| 1682 | |
| 1683 | template<typename... Args> |
| 1684 | std::string strprintf(const char* format, const Args&... args) |
no test coverage detected