[PATCH] D20492: Clang support for __is_assignable intrinsic

David Majnemer via cfe-commits cfe-commits at lists.llvm.org
Fri May 20 14:36:29 PDT 2016


majnemer added a subscriber: majnemer.

================
Comment at: lib/Sema/SemaExprCXX.cpp:4523-4525
@@ -4521,1 +4522,5 @@
 
+    if (BTT == BTT_IsAssignable) {
+      return true;
+    }
+
----------------
I'd remove the braces and sort it above the `BTT_IsNothrowAssignable` case.


http://reviews.llvm.org/D20492





More information about the cfe-commits mailing list