From 8925e14b7b2ece9fb8d4b10814de95a69e97b6ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rkus=20Dorkus?= Date: Sat, 13 Jan 2024 15:09:49 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=20Add=20missing=20traits=20in=20xc?= =?UTF-8?q?har.h?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/fmt/xchar.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/fmt/xchar.h b/include/fmt/xchar.h index 463dbd9fb4fcc..5b076054d6e42 100644 --- a/include/fmt/xchar.h +++ b/include/fmt/xchar.h @@ -235,6 +235,7 @@ inline auto vformat_to(Char (&out)[Size], const Locale& loc, const S& format_str, typename detail::vformat_args::type args) -> format_to_result { + using traits = detail::fixed_buffer_traits; auto&& buf = detail::iterator_buffer(out, Size); vformat_to(buf, detail::to_string_view(format_str), args, detail::locale_ref(loc));