Fix 80-col violation.
llvm-svn: 58070
diff --git a/clang/lib/Analysis/RegionStore.cpp b/clang/lib/Analysis/RegionStore.cpp
index 05cd46e..d0798db 100644
--- a/clang/lib/Analysis/RegionStore.cpp
+++ b/clang/lib/Analysis/RegionStore.cpp
@@ -86,9 +86,7 @@
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 @@
return store;
}
+void RegionStoreManager::print(Store store, std::ostream& Out, const char* nl,
+ const char *sep) {
+
+}