yvals.h (309B)
1 #pragma once 2 3 #define _HAS_CHAR16_T_LANGUAGE_SUPPORT 1 4 // this is a fucking keyword in the fucking language, but clang tries to 5 // workaround it for old msvc versions, breaking when you create a char16/32 6 // literal... 7 using char16_t = decltype(u'a'); 8 using char32_t = decltype(U'a'); 9 #include_next <yvals.h>