summaryrefslogtreecommitdiffstats
path: root/clang/lib/GR/RegionStore.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-12-22 18:53:20 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-12-22 18:53:20 +0000
commitca08fba4141f1d3ae6193b3c81fb6ba8fb10d7dc (patch)
treef698b3925e75c9dd7191c220008b8e569fa6f083 /clang/lib/GR/RegionStore.cpp
parenta700e976b658860418bc145ec0bdacd4f1db3264 (diff)
downloadbcm5719-llvm-ca08fba4141f1d3ae6193b3c81fb6ba8fb10d7dc.tar.gz
bcm5719-llvm-ca08fba4141f1d3ae6193b3c81fb6ba8fb10d7dc.zip
[analyzer] Refactoring: Move stuff into namespace 'GR'.
llvm-svn: 122423
Diffstat (limited to 'clang/lib/GR/RegionStore.cpp')
-rw-r--r--clang/lib/GR/RegionStore.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/lib/GR/RegionStore.cpp b/clang/lib/GR/RegionStore.cpp
index a310b191813..f2c47377d96 100644
--- a/clang/lib/GR/RegionStore.cpp
+++ b/clang/lib/GR/RegionStore.cpp
@@ -29,6 +29,7 @@
#include "llvm/Support/raw_ostream.h"
using namespace clang;
+using namespace GR;
using llvm::Optional;
//===----------------------------------------------------------------------===//
@@ -403,12 +404,12 @@ public: // Part of public interface to class.
// RegionStore creation.
//===----------------------------------------------------------------------===//
-StoreManager *clang::CreateRegionStoreManager(GRStateManager& StMgr) {
+StoreManager *GR::CreateRegionStoreManager(GRStateManager& StMgr) {
RegionStoreFeatures F = maximal_features_tag();
return new RegionStoreManager(StMgr, F);
}
-StoreManager *clang::CreateFieldsOnlyRegionStoreManager(GRStateManager &StMgr) {
+StoreManager *GR::CreateFieldsOnlyRegionStoreManager(GRStateManager &StMgr) {
RegionStoreFeatures F = minimal_features_tag();
F.enableFields(true);
return new RegionStoreManager(StMgr, F);
OpenPOWER on IntegriCloud