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
Rust's char is 32 bits wide. wchar_t is not 32 bits wide e.g. on Windows, so mapping Rust's char to wchar_t is incorrect. (wchar_t is non-portable and generally a bad idea.) Rust's char should map to C11 char32_t.