diff options
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/ADT/bit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/bit.h b/llvm/include/llvm/ADT/bit.h index 0d772acc481..0e383212712 100644 --- a/llvm/include/llvm/ADT/bit.h +++ b/llvm/include/llvm/ADT/bit.h @@ -27,7 +27,7 @@ template <typename To, typename From , typename = typename std::enable_if<std::is_trivially_copyable<To>::value>::type , typename = typename std::enable_if<std::is_trivially_copyable<From>::value>::type #elif __has_feature(is_trivially_copyable) - , typename = typename std::enable_if<__is_trivially_copyable(To>>::type + , typename = typename std::enable_if<__is_trivially_copyable(To)>::type , typename = typename std::enable_if<__is_trivially_copyable(From)>::type #else // This case is GCC 4.x. clang with libc++ or libstdc++ never get here. Unlike |

