From 1953736319aa40ae2db948529ae53ce96570b0c7 Mon Sep 17 00:00:00 2001 From: Shawn Zhong Date: Sat, 29 Apr 2023 06:40:43 -0500 Subject: [PATCH] Fix windows build --- src/format.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/format.cc b/src/format.cc index 41269ce1..1ce17334 100644 --- a/src/format.cc +++ b/src/format.cc @@ -39,7 +39,9 @@ template FMT_API auto thousands_sep_impl(locale_ref) -> thousands_sep_result; template FMT_API auto decimal_point_impl(locale_ref) -> wchar_t; +#if !FMT_USE_CONSTEXPR template FMT_API void buffer::append(const wchar_t*, const wchar_t*); +#endif } // namespace detail FMT_END_NAMESPACE