From 60db5efc19fd69539caf581e8e87abe900c8a687 Mon Sep 17 00:00:00 2001 From: JF Bastien Date: Mon, 10 Sep 2018 21:43:17 +0000 Subject: [PATCH] Fix bit_cast properly Mismatched braces. llvm-svn: 341867 --- llvm/include/llvm/ADT/bit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/ADT/bit.h b/llvm/include/llvm/ADT/bit.h index 0d772acc481f..0e3832127120 100644 --- a/llvm/include/llvm/ADT/bit.h +++ b/llvm/include/llvm/ADT/bit.h @@ -27,7 +27,7 @@ template ::value>::type , typename = typename std::enable_if::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