From e9eee9444495f451e9df4083804aea832b4cfc37 Mon Sep 17 00:00:00 2001 From: bugdea1er Date: Wed, 2 Aug 2023 21:12:26 +0300 Subject: [PATCH] Removed stdout argument --- include/fmt/core.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 5f85f7e8..e376e899 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -2915,9 +2915,7 @@ FMT_INLINE void println(format_string fmt, T&&... args) { /** Writes a newline to ``stdout``. */ -FMT_INLINE void println() { - return fmt::println(stdout, ""); -} +FMT_INLINE void println() { return fmt::println(""); } FMT_END_EXPORT FMT_GCC_PRAGMA("GCC pop_options")