You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
309 B
C
10 lines
309 B
C
#pragma once
|
|
|
|
#define _HAS_CHAR16_T_LANGUAGE_SUPPORT 1
|
|
// this is a fucking keyword in the fucking language, but clang tries to
|
|
// workaround it for old msvc versions, breaking when you create a char16/32
|
|
// literal...
|
|
using char16_t = decltype(u'a');
|
|
using char32_t = decltype(U'a');
|
|
#include_next <yvals.h>
|