Fix formatting

This commit is contained in:
Victor Zverovich 2023-05-10 16:29:47 -07:00
parent 0e4278717b
commit 93d7cb12f1

View File

@ -1413,8 +1413,7 @@ class utf8_to_utf16 {
}; };
// A converter from UTF-16/UTF-32 (host endian) to UTF-8. // A converter from UTF-16/UTF-32 (host endian) to UTF-8.
template <typename WChar, typename Buffer = memory_buffer> template <typename WChar, typename Buffer = memory_buffer> class to_utf8 {
class to_utf8 {
private: private:
Buffer buffer_; Buffer buffer_;
@ -4194,7 +4193,7 @@ FMT_API auto vsystem_error(int error_code, string_view format_str,
if (!file) if (!file)
throw fmt::system_error(errno, "cannot open file '{}'", filename); throw fmt::system_error(errno, "cannot open file '{}'", filename);
\endrst \endrst
*/ */
template <typename... T> template <typename... T>
auto system_error(int error_code, format_string<T...> fmt, T&&... args) auto system_error(int error_code, format_string<T...> fmt, T&&... args)
-> std::system_error { -> std::system_error {