[cfe-commits] r151389 - /cfe/trunk/lib/Sema/SemaExprCXX.cpp

Dmitri Gribenko gribozavr at gmail.com
Fri Feb 24 12:03:35 PST 2012


Author: gribozavr
Date: Fri Feb 24 14:03:35 2012
New Revision: 151389

URL: http://llvm.org/viewvc/llvm-project?rev=151389&view=rev
Log:
Fix comment: correct predicate name, reformat comment.

Modified:
    cfe/trunk/lib/Sema/SemaExprCXX.cpp

Modified: cfe/trunk/lib/Sema/SemaExprCXX.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaExprCXX.cpp?rev=151389&r1=151388&r2=151389&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaExprCXX.cpp (original)
+++ cfe/trunk/lib/Sema/SemaExprCXX.cpp Fri Feb 24 14:03:35 2012
@@ -3218,12 +3218,11 @@
   switch (Kind) {
   case clang::TT_IsTriviallyConstructible: {
     // C++11 [meta.unary.prop]:
-    //   is_trivially_constructor is defined as:
+    //   is_trivially_constructible is defined as:
     //
-    //     is_constructible<T, Args...>::value is true and the variable 
-    //
-    ///  definition for is_constructible, as defined below, is known to call no
-    //   operation that is not trivial.
+    //     is_constructible<T, Args...>::value is true and the variable
+    //     definition for is_constructible, as defined below, is known to call no
+    //     operation that is not trivial.
     //
     //   The predicate condition for a template specialization 
     //   is_constructible<T, Args...> shall be satisfied if and only if the 





More information about the cfe-commits mailing list