]> granicus.if.org Git - clang/commitdiff
Fix typo (again).
authorFariborz Jahanian <fjahanian@apple.com>
Tue, 8 Jan 2013 23:48:48 +0000 (23:48 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Tue, 8 Jan 2013 23:48:48 +0000 (23:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171917 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaExpr.cpp

index 352be07f1a58123d6bf61b69f545463cf11f902b..5b7a39674b0edbea72f289243fbd6d41e86e379e 100644 (file)
@@ -10759,7 +10759,7 @@ bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc,
       }
       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) {