Merge workarounds for MSVC bugs

This commit is contained in:
Victor Zverovich
2026-01-29 16:42:57 -08:00
parent b5c4e795bb
commit 483eddc851
2 changed files with 4 additions and 9 deletions
+1 -1
View File
@@ -979,7 +979,7 @@ FMT_API void print(FILE*, string_view);
namespace detail {
template <typename Char, size_t N> struct fixed_string {
FMT_CONSTEXPR20 fixed_string(const Char (&s)[N]) {
FMT_CONSTEXPR fixed_string(const Char (&s)[N]) {
detail::copy<Char, const Char*, Char*>(static_cast<const Char*>(s), s + N,
data);
}