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 don't know why FMT_STRING is limited to use char only since fmt itself support both char and wchar_t. Is it designed to be that?
char
wchar_t
There several pieces of code hard coded the char_type:
fmt/include/fmt/format.h
Line 1257 in 3e75ad9
Lines 2273 to 2274 in 3e75ad9
Lines 3684 to 3685 in 3e75ad9
It is easy to solve this problem by adding typedef of char_type in the struct S.
struct S
The text was updated successfully, but these errors were encountered:
Is it designed to be that?
No, just noone generalized it yet. It is indeed easy to solve and PRs are welcome.
Sorry, something went wrong.
No branches or pull requests
I don't know why FMT_STRING is limited to use
char
only since fmt itself support bothchar
andwchar_t
. Is it designed to be that?There several pieces of code hard coded the char_type:
fmt/include/fmt/format.h
Line 1257 in 3e75ad9
fmt/include/fmt/format.h
Lines 2273 to 2274 in 3e75ad9
fmt/include/fmt/format.h
Lines 3684 to 3685 in 3e75ad9
It is easy to solve this problem by adding typedef of char_type in the
struct S
.The text was updated successfully, but these errors were encountered: