| 31 | // format strings in MSVC. |
| 32 | template <typename... Args> |
| 33 | auto test_sprintf(fmt::string_view format, const Args&... args) -> std::string { |
| 34 | return fmt::sprintf(format, args...); |
| 35 | } |
| 36 | template <typename... Args> |
| 37 | auto test_sprintf(fmt::basic_string_view<wchar_t> format, const Args&... args) |
| 38 | -> std::wstring { |