🛠 Revert choice of Unicode for CI-based MSVC

This commit is contained in:
ThePhD 2023-12-15 00:32:47 -05:00
parent 3be28a5c92
commit 5982f05269
No known key found for this signature in database
GPG Key ID: 1509DB1C0F702BFA

View File

@ -362,7 +362,7 @@ auto write_encoded_tm_str(OutputIt out, string_view in, const std::locale& loc)
if (detail::is_utf8() && loc != get_classic_locale()) {
// char16_t and char32_t codecvts are broken in MSVC (linkage errors) and
// gcc-4.
#if FMT_MSC_VERSION < 1932 || \
#if FMT_MSC_VERSION != 0 || \
(defined(__GLIBCXX__) && !defined(_GLIBCXX_USE_DUAL_ABI))
// The _GLIBCXX_USE_DUAL_ABI macro is always defined in libstdc++ from gcc-5
// and newer.