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
I get an exception when trying to read or use text.
When I tried peeking into it, the contents appear to be garbage, and the length was 7824718.
This only happens when using custom renderers.
I'm not sure where the garbage is coming from, but a nice fix would be to remove this overload entirely, since char8_t variants aren't exactly useful in the current standard and the other overload worked just fine before C++20. And, to me, it also makes no sense to have two pure virtual overloads for the same exact purpose.
The text was updated successfully, but these errors were encountered:
Not sure why there's any support for
char8_t
variants, but this definitely breaks when compiled with MSVC C++20:I get an exception when trying to read or use
text
.When I tried peeking into it, the contents appear to be garbage, and the length was
7824718
.This only happens when using custom renderers.
I'm not sure where the garbage is coming from, but a nice fix would be to remove this overload entirely, since
char8_t
variants aren't exactly useful in the current standard and the other overload worked just fine before C++20. And, to me, it also makes no sense to have two pure virtual overloads for the same exact purpose.The text was updated successfully, but these errors were encountered: