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
I am writing codes for #2319 . During testing I found that: Mixed using of "char" and "wchar" would cause this bug.
See https://godbolt.org/z/fWx84x8cv
This issue starts at release 6.0.0.
#include <fmt/format.h> int main () { fmt::print("{}",42); fmt::print(L"{}",42); }
I searched this error in issues, nothing found. I post it here. I don't know if it's a feature or a bug, or a known issue.
The text was updated successfully, but these errors were encountered:
This looks like a feature. Closed now.
Sorry, something went wrong.
This is a stdio, not {fmt} problem. I wouldn't recommend using wchar_t with I/O at all.
wchar_t
No branches or pull requests
I am writing codes for #2319 . During testing I found that:
Mixed using of "char" and "wchar" would cause this bug.
See https://godbolt.org/z/fWx84x8cv
This issue starts at release 6.0.0.
I searched this error in issues, nothing found. I post it here. I don't know if it's a feature or a bug, or a known issue.
The text was updated successfully, but these errors were encountered: