diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-02-23 16:54:00 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-02-23 16:54:00 +0000 |
commit | 726fd5cbf5774ebc7e727dac9365b6dd796a6e69 (patch) | |
tree | 2b535df6b35fcde10f5a3e5bb768ec021a0a4f40 /clang/lib/Analysis/CFRefCount.cpp | |
parent | 82157a17c122ad47e1e4cc0fcff38ce88c951210 (diff) | |
download | bcm5719-llvm-726fd5cbf5774ebc7e727dac9365b6dd796a6e69.tar.gz bcm5719-llvm-726fd5cbf5774ebc7e727dac9365b6dd796a6e69.zip |
Fix 80 col. violations.
llvm-svn: 65322
Diffstat (limited to 'clang/lib/Analysis/CFRefCount.cpp')
-rw-r--r-- | clang/lib/Analysis/CFRefCount.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/lib/Analysis/CFRefCount.cpp b/clang/lib/Analysis/CFRefCount.cpp index efd1c85f2b9..39edcfd8ad8 100644 --- a/clang/lib/Analysis/CFRefCount.cpp +++ b/clang/lib/Analysis/CFRefCount.cpp @@ -1099,7 +1099,8 @@ void RetainSummaryManager::InitializeMethodSummaries() { // Create the "init" selector. It just acts as a pass-through for the // receiver. - RetainSummary* InitSumm = getPersistentSummary(RetEffect::MakeReceiverAlias()); + RetainSummary* InitSumm = + getPersistentSummary(RetEffect::MakeReceiverAlias()); addNSObjectMethSummary(GetNullarySelector("init", Ctx), InitSumm); // The next methods are allocators. @@ -2883,7 +2884,8 @@ void CFRefCount::EvalDeadSymbols(ExplodedNodeSet<GRState>& Dst, CFRefBug *BT = static_cast<CFRefBug*>(I->second ? leakAtReturn : leakWithinFunction); assert(BT && "BugType not initialized."); - CFRefLeakReport* report = new CFRefLeakReport(*BT, *this, N, I->first, Eng); + CFRefLeakReport* report = new CFRefLeakReport(*BT, *this, N, + I->first, Eng); BR->EmitReport(report); } |