fast_io
fast_io copied to clipboard
phase out all wchar_t in the code base.
it is just wrong to assume sizeof(wchar_t) would necessarily be 2 on windows. GCC even has toggle to change that.
They should all use char16_t instead.
char16_t must be the default character type for NT kernel.