]> granicus.if.org Git - clang/commitdiff
Fix 80 col. violations.
authorTed Kremenek <kremenek@apple.com>
Mon, 23 Feb 2009 16:54:00 +0000 (16:54 +0000)
committerTed Kremenek <kremenek@apple.com>
Mon, 23 Feb 2009 16:54:00 +0000 (16:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65322 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/CFRefCount.cpp

index efd1c85f2b97deb5109c481df3abdd7f6b287fc4..39edcfd8ad88194dd8373adfc5d10d04e0d0c3b1 100644 (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);
     }