aboutsummaryrefslogtreecommitdiff
path: root/lib/GR/RangeConstraintManager.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2010-12-23 07:20:52 +0000
committerTed Kremenek <kremenek@apple.com>2010-12-23 07:20:52 +0000
commit9ef6537a894c33003359b1f9b9676e9178e028b7 (patch)
treee210ece0b0b16a3f888b3caca7eb5505af1fc5c2 /lib/GR/RangeConstraintManager.cpp
parent51fbe2b76605b932f876e9850927d972580a294d (diff)
Rename static analyzer namespace 'GR' to 'ento'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122492 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/GR/RangeConstraintManager.cpp')
-rw-r--r--lib/GR/RangeConstraintManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/GR/RangeConstraintManager.cpp b/lib/GR/RangeConstraintManager.cpp
index 8f8528dbde..5ce69bafd1 100644
--- a/lib/GR/RangeConstraintManager.cpp
+++ b/lib/GR/RangeConstraintManager.cpp
@@ -23,7 +23,7 @@
#include "llvm/Support/raw_ostream.h"
using namespace clang;
-using namespace GR;
+using namespace ento;
namespace { class ConstraintRange {}; }
static int ConstraintRangeIndex = 0;
@@ -195,7 +195,7 @@ public:
typedef llvm::ImmutableMap<SymbolRef,RangeSet> ConstraintRangeTy;
namespace clang {
-namespace GR {
+namespace ento {
template<>
struct GRStateTrait<ConstraintRange>
: public GRStatePartialTrait<ConstraintRangeTy> {
@@ -254,7 +254,7 @@ private:
} // end anonymous namespace
-ConstraintManager* GR::CreateRangeConstraintManager(GRStateManager&,
+ConstraintManager* ento::CreateRangeConstraintManager(GRStateManager&,
SubEngine &subeng) {
return new RangeConstraintManager(subeng);
}