diff --git a/include/llvm/Support/type_traits.h b/include/llvm/Support/type_traits.h index a76344c098f..3296c070c0f 100644 --- a/include/llvm/Support/type_traits.h +++ b/include/llvm/Support/type_traits.h @@ -133,7 +133,7 @@ template class is_integral_or_enum { // types (or with nullptr_t in C++11). template struct check1_return_type { char c[2]; }; template static check1_return_type checker1(U*); - static char checker1(...); + template static char checker1(...); // Form a return type that can only be instantiated with nullptr_t in C++11 // mode. It's harmless in C++98 mode, but this allows us to filter nullptr_t @@ -143,12 +143,12 @@ template class is_integral_or_enum { template struct check2_return_type { char c[2]; }; template static check2_return_type checker2(U*); - static char checker2(...); + template static char checker2(...); public: enum { - value = (sizeof(char) != sizeof(checker1((T*)0)) && - sizeof(char) == sizeof(checker2((T*)0))) + value = (sizeof(char) != sizeof(checker1(0)) && + sizeof(char) == sizeof(checker2(0))) }; };