[cfe-commits] r58596 - /cfe/trunk/lib/Analysis/GRState.cpp
    Zhongxing Xu 
    xuzhongxing at gmail.com
       
    Sun Nov  2 21:18:35 PST 2008
    
    
  
Author: zhongxingxu
Date: Sun Nov  2 23:18:34 2008
New Revision: 58596
URL: http://llvm.org/viewvc/llvm-project?rev=58596&view=rev
Log:
Fix 80-col violations.
Modified:
    cfe/trunk/lib/Analysis/GRState.cpp
Modified: cfe/trunk/lib/Analysis/GRState.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/GRState.cpp?rev=58596&r1=58595&r2=58596&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/GRState.cpp (original)
+++ cfe/trunk/lib/Analysis/GRState.cpp Sun Nov  2 23:18:34 2008
@@ -96,7 +96,7 @@
 ///  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 @@
   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);
   
    
    
More information about the cfe-commits
mailing list