diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-12-22 18:53:20 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-12-22 18:53:20 +0000 |
commit | ca08fba4141f1d3ae6193b3c81fb6ba8fb10d7dc (patch) | |
tree | f698b3925e75c9dd7191c220008b8e569fa6f083 /clang/lib/GR/RegionStore.cpp | |
parent | a700e976b658860418bc145ec0bdacd4f1db3264 (diff) | |
download | bcm5719-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.cpp | 5 |
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); |