]> granicus.if.org Git - clang/commitdiff
Fix 80-col violation.
authorZhongxing Xu <xuzhongxing@gmail.com>
Fri, 24 Oct 2008 04:33:15 +0000 (04:33 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Fri, 24 Oct 2008 04:33:15 +0000 (04:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58070 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/GRExprEngine.cpp
lib/Analysis/RegionStore.cpp

index 1840482a3faca28921b348703ad6f71172c1fbb4..996fea9f639c69f5ca5e7d4806af2e19d621d3ea 100644 (file)
@@ -2322,7 +2322,7 @@ struct VISIBILITY_HIDDEN DOTGraphTraits<GRExprEngine::NodeTy*> :
         if (SLoc.isFileID()) {        
           Out << "\\lline="
             << GraphPrintSourceManager->getLineNumber(SLoc) << " col="
-            << GraphPrintSourceManager->getColumnNumber(SLoc) << "\\l";          
+            << GraphPrintSourceManager->getColumnNumber(SLoc) << "\\l";
         }
         
         if (GraphPrintCheckerState->isImplicitNullDeref(N))
index 05cd46e1f90ed941f2a561feca10767966effe5b..d0798db2c49159627a48d9c65eb347da40b137c0 100644 (file)
@@ -86,9 +86,7 @@ public:
    return RegionBindingsTy(static_cast<const RegionBindingsTy::TreeTy*>(store));
   }
 
-  void print(Store store, std::ostream& Out, const char* nl, const char *sep) {
-    // FIXME: Implement.
-  }
+  void print(Store store, std::ostream& Out, const char* nl, const char *sep);
 
   void iterBindings(Store store, BindingsHandler& f) {
     // FIXME: Implement.
@@ -346,3 +344,7 @@ Store RegionStoreManager::AddDecl(Store store,
   return store;
 }
 
+void RegionStoreManager::print(Store store, std::ostream& Out, const char* nl, 
+                               const char *sep) {
+  
+}