From: Ted Kremenek Date: Thu, 28 Jan 2010 01:04:48 +0000 (+0000) Subject: Fix 80 col violation. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8acc9f6370865e200f1bf63dee5c48d8c28e2b06;p=clang Fix 80 col violation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94717 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp index 97d30752c7..9305ff7562 100644 --- a/lib/Sema/SemaChecking.cpp +++ b/lib/Sema/SemaChecking.cpp @@ -2263,7 +2263,9 @@ void Sema::CheckUnreachable(AnalysisContext &AC) { CFGBlock &b = **I; if (!live[b.getBlockID()]) // Avoid excessive errors by marking everything reachable from here - lines.push_back(ErrLoc(MarkLiveTop(&b, live, Context.getSourceManager()), SourceRange(), SourceRange())); + lines.push_back(ErrLoc(MarkLiveTop(&b, live, + Context.getSourceManager()), + SourceRange(), SourceRange())); } }