diff options
| author | Ted Kremenek <kremenek@apple.com> | 2010-01-28 01:04:48 +0000 | 
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2010-01-28 01:04:48 +0000 | 
| commit | e4fd3300c9bc771a413c7abe46e7cbd02e8815a1 (patch) | |
| tree | c7f533548c66dfd061b17ea4461d72839572f3a2 /clang | |
| parent | 94a946cac4de71f964278f5e4a4dea40e6398353 (diff) | |
| download | bcm5719-llvm-e4fd3300c9bc771a413c7abe46e7cbd02e8815a1.tar.gz bcm5719-llvm-e4fd3300c9bc771a413c7abe46e7cbd02e8815a1.zip  | |
Fix 80 col violation.
llvm-svn: 94717
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/lib/Sema/SemaChecking.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp index 97d30752c7b..9305ff7562d 100644 --- a/clang/lib/Sema/SemaChecking.cpp +++ b/clang/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()));      }    }  | 

