aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore/LeaksContext.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-04-15 17:08:50 +0000
committerDan Gohman <gohman@apple.com>2010-04-15 17:08:50 +0000
commitb35798347ea87b8b6d36155b211016a7769f01ab (patch)
treebdf2ae210bf2fd57d31bf92e1a3d89a631ab3d58 /lib/VMCore/LeaksContext.h
parent098406b42ca7cd05745215020ae5ed82194b7c0a (diff)
Fix a bunch of namespace polution.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101376 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/LeaksContext.h')
-rw-r--r--lib/VMCore/LeaksContext.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/VMCore/LeaksContext.h b/lib/VMCore/LeaksContext.h
index abff090b87..b9e59d46b7 100644
--- a/lib/VMCore/LeaksContext.h
+++ b/lib/VMCore/LeaksContext.h
@@ -14,7 +14,8 @@
#include "llvm/Value.h"
#include "llvm/ADT/SmallPtrSet.h"
-using namespace llvm;
+
+namespace llvm {
template <class T>
struct PrinterTrait {
@@ -87,3 +88,5 @@ private:
const T* Cache;
const char* Name;
};
+
+}