[analyzer] Refactoring: Move stuff into namespace 'GR'.
llvm-svn: 122423
diff --git a/clang/lib/GR/GRCoreEngine.cpp b/clang/lib/GR/GRCoreEngine.cpp
index 9f34e89..092cb46 100644
--- a/clang/lib/GR/GRCoreEngine.cpp
+++ b/clang/lib/GR/GRCoreEngine.cpp
@@ -25,12 +25,15 @@
using llvm::cast;
using llvm::isa;
using namespace clang;
+using namespace GR;
// This should be removed in the future.
namespace clang {
+namespace GR {
GRTransferFuncs* MakeCFRefCountTF(ASTContext& Ctx, bool GCEnabled,
const LangOptions& lopts);
}
+}
//===----------------------------------------------------------------------===//
// Worklist classes for exploration of reachable states.