You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wil::zwstring_view v{L"foo, bar"};
auto m = std::format(L"{}", v);
Produces the usual inscrutable "you can't format that but I won't explain why" thing. Using v.c_str() works fine. Presumably that's because there's no std::formatter<wil::zwstring_view> alike, and we need to provide something like this from the STL's __msvc_formatter.hpp:
Saying this:
Produces the usual inscrutable "you can't format that but I won't explain why" thing. Using
v.c_str()
works fine. Presumably that's because there's nostd::formatter<wil::zwstring_view>
alike, and we need to provide something like this from the STL's __msvc_formatter.hpp:The text was updated successfully, but these errors were encountered: