From: Chris Lattner Date: Thu, 30 Aug 2007 17:08:17 +0000 (+0000) Subject: Fix 80 col violations. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f4b92c205cf74f37c693a5e392c8c6a6a986978;p=clang Fix 80 col violations. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41611 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Sema/ASTStreamer.cpp b/Sema/ASTStreamer.cpp index 1057d93281..c0f4cae735 100644 --- a/Sema/ASTStreamer.cpp +++ b/Sema/ASTStreamer.cpp @@ -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(Streamer)->ReadTopLevelDecl(); } diff --git a/Sema/SemaChecking.cpp b/Sema/SemaChecking.cpp index 5569f48653..863882ec98 100644 --- a/Sema/SemaChecking.cpp +++ b/Sema/SemaChecking.cpp @@ -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]); }