Removed stdout argument

This commit is contained in:
bugdea1er 2023-08-02 21:12:26 +03:00
parent c19e127e30
commit e9eee94444

View File

@ -2915,9 +2915,7 @@ FMT_INLINE void println(format_string<T...> fmt, T&&... args) {
/** /**
Writes a newline to ``stdout``. Writes a newline to ``stdout``.
*/ */
FMT_INLINE void println() { FMT_INLINE void println() { return fmt::println(""); }
return fmt::println(stdout, "");
}
FMT_END_EXPORT FMT_END_EXPORT
FMT_GCC_PRAGMA("GCC pop_options") FMT_GCC_PRAGMA("GCC pop_options")