We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
std::vector<char> buf; fmt::format_to(std::back_inserter(buf), "{}", 0);
The above works, but not the below.
std::vector<wchar_t> buf; fmt::format_to(std::back_inserter(buf), L"{}", 0);
The text was updated successfully, but these errors were encountered:
Parameterize format_to on string type (#880)
e4ca37c
Parameterize format_to on string type (fmtlib#880)
5cd14b8
(cherry picked from commit e4ca37c)
Added wchar_t support to format_to in e4ca37c. Thanks for reporting.
wchar_t
format_to
Sorry, something went wrong.
No branches or pull requests
The above works, but not the below.
The text was updated successfully, but these errors were encountered: