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

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


Author: fjahanian
Date: Tue Jan  8 17:48:48 2013
New Revision: 171917

URL: http://llvm.org/viewvc/llvm-project?rev=171917&view=rev
Log:
Fix typo (again).

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=171917&r1=171916&r2=171917&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaExpr.cpp (original)
+++ cfe/trunk/lib/Sema/SemaExpr.cpp Tue Jan  8 17:48:48 2013
@@ -10759,7 +10759,7 @@
       }
       return true;
     }
-    // Prohibit structs with flexiable array members too.
+    // Prohibit structs with flexible 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() && IsBlock) {





More information about the cfe-commits mailing list