mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
16 lines
195 B
C++
16 lines
195 B
C++
template<typename X>
|
|
struct __is_integral_helper
|
|
{};
|
|
|
|
template<>
|
|
struct __is_integral_helper<char16_t>
|
|
{};
|
|
|
|
template<>
|
|
struct __is_integral_helper<unsigned short>
|
|
{};
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|