From 5b12be27ed929006aaaabc35414c1d119e55190a Mon Sep 17 00:00:00 2001 From: vinayyadav3016 Date: Tue, 5 Sep 2023 19:20:59 +0530 Subject: [PATCH] Moved 'args' to previous line as requested --- include/fmt/format-inl.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/fmt/format-inl.h b/include/fmt/format-inl.h index d0c60494..553e7ce8 100644 --- a/include/fmt/format-inl.h +++ b/include/fmt/format-inl.h @@ -1445,8 +1445,7 @@ FMT_FUNC bool write_console(std::FILE* f, string_view text) { // Print assuming legacy (non-Unicode) encoding. FMT_FUNC void vprint_mojibake(std::FILE* f, string_view fmt, format_args args) { auto buffer = memory_buffer(); - detail::vformat_to(buffer, fmt, - args); + detail::vformat_to(buffer, fmt, args); fwrite_fully(buffer.data(), 1, buffer.size(), f); } #endif