[cfe-commits] r104847 - /cfe/trunk/lib/AST/ASTContext.cpp

Fariborz Jahanian fjahanian at apple.com
Thu May 27 09:35:01 PDT 2010


Author: fjahanian
Date: Thu May 27 11:35:00 2010
New Revision: 104847

URL: http://llvm.org/viewvc/llvm-project?rev=104847&view=rev
Log:
Fix 80-column.

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=104847&r1=104846&r2=104847&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ASTContext.cpp (original)
+++ cfe/trunk/lib/AST/ASTContext.cpp Thu May 27 11:35:00 2010
@@ -2857,7 +2857,8 @@
       ObjCFastEnumerationStateTypeDecl->addDecl(Field);
     }
     if (getLangOptions().CPlusPlus)
-      if (CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(ObjCFastEnumerationStateTypeDecl))
+      if (CXXRecordDecl *CXXRD = 
+            dyn_cast<CXXRecordDecl>(ObjCFastEnumerationStateTypeDecl))
         CXXRD->setEmpty(false);
 
     ObjCFastEnumerationStateTypeDecl->completeDefinition();





More information about the cfe-commits mailing list