r186171 - fixes a typo caught by Jordan.
Fariborz Jahanian
fjahanian at apple.com
Fri Jul 12 09:41:56 PDT 2013
Author: fjahanian
Date: Fri Jul 12 11:41:56 2013
New Revision: 186171
URL: http://llvm.org/viewvc/llvm-project?rev=186171&view=rev
Log:
fixes a typo caught by Jordan.
Modified:
cfe/trunk/lib/AST/ASTContext.cpp
Modified: cfe/trunk/lib/AST/ASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ASTContext.cpp?rev=186171&r1=186170&r2=186171&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ASTContext.cpp (original)
+++ cfe/trunk/lib/AST/ASTContext.cpp Fri Jul 12 11:41:56 2013
@@ -5435,7 +5435,7 @@ void ASTContext::getObjCEncodingForTypeI
// {...};
S += '^';
if (FD && OPT->getInterfaceDecl()) {
- // Prevent redursive encoding of fields in some rare cases.
+ // Prevent recursive encoding of fields in some rare cases.
ObjCInterfaceDecl *OI = OPT->getInterfaceDecl();
SmallVector<const ObjCIvarDecl*, 32> Ivars;
DeepCollectObjCIvars(OI, true, Ivars);
More information about the cfe-commits
mailing list