Fix 80 col violation.

llvm-svn: 94717
This commit is contained in:
Ted Kremenek 2010-01-28 01:04:48 +00:00
parent 94a946cac4
commit e4fd3300c9
1 changed files with 3 additions and 1 deletions

View File

@ -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()));
}
}