| 4312 | FMT_API void report_system_error(int error_code, const char* message) noexcept; |
| 4313 | |
| 4314 | inline auto vformat(locale_ref loc, string_view fmt, format_args args) |
| 4315 | -> std::string { |
| 4316 | auto buf = memory_buffer(); |
| 4317 | detail::vformat_to(buf, fmt, args, loc); |
| 4318 | return {buf.data(), buf.size()}; |
| 4319 | } |
| 4320 | |
| 4321 | template <typename... T> |
| 4322 | FMT_INLINE auto format(locale_ref loc, format_string<T...> fmt, T&&... args) |
no test coverage detected