| 419 | |
| 420 | #if LOGURU_USE_FMTLIB |
| 421 | Text vtextprintf(const char* format, fmt::format_args args) |
| 422 | { |
| 423 | return Text(STRDUP(fmt::vformat(format, args).c_str())); |
| 424 | } |
| 425 | #else |
| 426 | LOGURU_PRINTF_LIKE(1, 0) |
| 427 | static Text vtextprintf(const char* format, va_list vlist) |
no test coverage detected