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
Using the c++20 version of the standard does not automatically support char8_t. Compilers have options to disable various features, including char8_t support (for example, '-fno-char8_t' in GCC). It is more correct to check the support directly for char8_t via __cpp_char8_t.
The text was updated successfully, but these errors were encountered:
Using the c++20 version of the standard does not automatically support char8_t. Compilers have options to disable various features, including char8_t support (for example, '-fno-char8_t' in GCC). It is more correct to check the support directly for char8_t via __cpp_char8_t.
The text was updated successfully, but these errors were encountered: