aboutsummaryrefslogtreecommitdiff
path: root/lib/GR/BasicStore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/GR/BasicStore.cpp')
-rw-r--r--lib/GR/BasicStore.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/GR/BasicStore.cpp b/lib/GR/BasicStore.cpp
index e9e85b9bd1..2a673e2496 100644
--- a/lib/GR/BasicStore.cpp
+++ b/lib/GR/BasicStore.cpp
@@ -19,6 +19,7 @@
#include "llvm/ADT/ImmutableMap.h"
using namespace clang;
+using namespace GR;
typedef llvm::ImmutableMap<const MemRegion*,SVal> BindingsTy;
@@ -103,7 +104,7 @@ private:
} // end anonymous namespace
-StoreManager* clang::CreateBasicStoreManager(GRStateManager& StMgr) {
+StoreManager* GR::CreateBasicStoreManager(GRStateManager& StMgr) {
return new BasicStoreManager(StMgr);
}