aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/RegionStore.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2008-10-24 04:33:15 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2008-10-24 04:33:15 +0000
commit5b8b6f2d2064746989ae480d9b73dfc96676cd2b (patch)
tree956744ae01aa981dbcb787327aeebbb131bae6d7 /lib/Analysis/RegionStore.cpp
parentb406459d5b459b95f373825d388430465ad962f9 (diff)
Fix 80-col violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58070 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/RegionStore.cpp')
-rw-r--r--lib/Analysis/RegionStore.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/Analysis/RegionStore.cpp b/lib/Analysis/RegionStore.cpp
index 05cd46e1f9..d0798db2c4 100644
--- a/lib/Analysis/RegionStore.cpp
+++ b/lib/Analysis/RegionStore.cpp
@@ -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) {
+
+}