[cfe-commits] r171913 - /cfe/trunk/lib/Sema/SemaExpr.cpp

Fariborz Jahanian fjahanian at apple.com
Tue Jan 8 15:21:22 PST 2013


Author: fjahanian
Date: Tue Jan  8 17:21:22 2013
New Revision: 171913

URL: http://llvm.org/viewvc/llvm-project?rev=171913&view=rev
Log:
Fixes typo in comment.

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

Modified: cfe/trunk/lib/Sema/SemaExpr.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaExpr.cpp?rev=171913&r1=171912&r2=171913&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaExpr.cpp (original)
+++ cfe/trunk/lib/Sema/SemaExpr.cpp Tue Jan  8 17:21:22 2013
@@ -10759,7 +10759,7 @@
       }
       return true;
     }
-    // Prohibit prohibit structs with flexisble array members too.
+    // Prohibit structs with flexiable array members too.
     // We cannot capture what is in the tail end of the struct.
     if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) {
       if (VTTy->getDecl()->hasFlexibleArrayMember()) {





More information about the cfe-commits mailing list