From: Zhongxing Xu Date: Mon, 3 Nov 2008 05:18:34 +0000 (+0000) Subject: Fix 80-col violations. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4230da6fc517ee2a0568dba969060cb90a9ac87c;p=clang Fix 80-col violations. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58596 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/GRState.cpp b/lib/Analysis/GRState.cpp index ad057c2f09..a5bc429586 100644 --- a/lib/Analysis/GRState.cpp +++ b/lib/Analysis/GRState.cpp @@ -96,7 +96,7 @@ const GRState* GRStateManager::BindDecl(const GRState* St, const VarDecl* VD, /// array of initializer values. const GRState* GRStateManager::BindCompoundLiteral(const GRState* state, - const CompoundLiteralRegion* R, + const CompoundLiteralRegion* R, const SVal* BegInit, const SVal* EndInit) { Store oldStore = state->getStore(); @@ -239,7 +239,7 @@ GRStateManager::FindGDMContext(void* K, return p.first; } -const GRState* GRStateManager::addGDM(const GRState* St, void* Key, void* Data){ +const GRState* GRStateManager::addGDM(const GRState* St, void* Key, void* Data){ GRState::GenericDataMap M1 = St->getGDM(); GRState::GenericDataMap M2 = GDMFactory.Add(M1, Key, Data);