Fix 80 col. violations.

llvm-svn: 65322
This commit is contained in:
Ted Kremenek 2009-02-23 16:54:00 +00:00
parent 82157a17c1
commit 726fd5cbf5
1 changed files with 4 additions and 2 deletions

View File

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