Fmt 11.2.0 (#3399)

* Bump fmt to 11.2.0
This commit is contained in:
Gabi Melman
2025-05-08 20:13:03 +03:00
committed by GitHub
parent 943fcbd761
commit 0d31acae28
13 changed files with 433 additions and 392 deletions

View File

@@ -158,7 +158,8 @@ void print(std::ostream& os, format_string<T...> fmt, T&&... args) {
FMT_EXPORT template <typename... T>
void println(std::ostream& os, format_string<T...> fmt, T&&... args) {
fmt::print(os, "{}\n", fmt::format(fmt, std::forward<T>(args)...));
fmt::print(os, FMT_STRING("{}\n"),
fmt::format(fmt, std::forward<T>(args)...));
}
FMT_END_NAMESPACE