Improve debug codegen

This commit is contained in:
Victor Zverovich
2024-09-02 06:54:45 -07:00
parent 9f29345ea0
commit a6ecd25b80
6 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -179,7 +179,7 @@ void vprint(std::basic_ostream<Char>& os,
FMT_EXPORT template <typename... T>
void print(std::ostream& os, format_string<T...> fmt, T&&... args) {
const auto& vargs = fmt::make_format_args(args...);
if (detail::use_utf8())
if (FMT_USE_UTF8)
vprint(os, fmt, vargs);
else
detail::vprint_directly(os, fmt, vargs);