]> granicus.if.org Git - clang/commitdiff
Fix 80 col violations.
authorChris Lattner <sabre@nondot.org>
Thu, 30 Aug 2007 17:08:17 +0000 (17:08 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 30 Aug 2007 17:08:17 +0000 (17:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41611 91177308-0d34-0410-b5e6-96231b3b80d8

Sema/ASTStreamer.cpp
Sema/SemaChecking.cpp

index 1057d93281899999e1dec0da04a0194327f8eda7..c0f4cae7354b01f768d9f13a6e25a9fa9135b582 100644 (file)
@@ -91,8 +91,8 @@ ASTStreamerTy *clang::ASTStreamer_Init(Preprocessor &pp, ASTContext &ctxt,
   return new ASTStreamer(pp, ctxt, MainFileID);
 }
 
-/// ASTStreamer_ReadTopLevelDecl - Parse and return one top-level declaration. This
-/// returns null at end of file.
+/// ASTStreamer_ReadTopLevelDecl - Parse and return one top-level declaration.
+/// This returns null at end of file.
 Decl *clang::ASTStreamer_ReadTopLevelDecl(ASTStreamerTy *Streamer) {
   return static_cast<ASTStreamer*>(Streamer)->ReadTopLevelDecl();
 }
index 5569f48653581c390c4fd10f802ca0deed9d5177..863882ec98609fda45c30b9732bdbce994bd0973 100644 (file)
@@ -41,7 +41,7 @@ Sema::CheckFunctionCall(Expr *Fn,
   if (FnInfo->getBuiltinID() == 
       Builtin::BI__builtin___CFStringMakeConstantString) {
     assert(NumArgsInCall == 1 &&
-           "Wrong number of arguments to builtin CFStringMakeConstantString");    
+           "Wrong number of arguments to builtin CFStringMakeConstantString");
     return CheckBuiltinCFStringArgument(Args[0]);
   }