Fix bit_cast properly

Mismatched braces.

llvm-svn: 341867
This commit is contained in:
JF Bastien 2018-09-10 21:43:17 +00:00
parent 4384759625
commit 60db5efc19

View File

@ -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