-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
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
char8_t formatting converts to integers #1188
Comments
Should print |
Should be covered by this case: Line 800 in af2c737
|
For the above example, on my Disco Docker:
Looks as though it's a GCC 9 regression. |
Could be some overload resolution weirdness, but I don't see how anything can be a better match than the |
Actually argument capture works fine. The problem is in lower level functions that have never been updated to handle exotic character types: Line 2766 in 7e42c65
|
Fixed in eddb84c. |
Thanks! |
The above program will format
u8'a'
as97
, nota
. Is this to be expected, WIP, or a bug?The text was updated successfully, but these errors were encountered: