aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/ValueHolder.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-14 21:35:53 +0000
committerChris Lattner <sabre@nondot.org>2003-12-14 21:35:53 +0000
commit2cdd21c2e4d855500dfb53f77aa74da53ccf9de6 (patch)
tree98803f88a663bba4b7955f121b58306f5ae11d85 /lib/Support/ValueHolder.cpp
parentb6d465f8131f5fb0b8e565685fb3395ed9aecbdb (diff)
Finegrainify namespacification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/ValueHolder.cpp')
-rw-r--r--lib/Support/ValueHolder.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Support/ValueHolder.cpp b/lib/Support/ValueHolder.cpp
index 77fdaf6b44..976f825598 100644
--- a/lib/Support/ValueHolder.cpp
+++ b/lib/Support/ValueHolder.cpp
@@ -18,10 +18,8 @@
#include "llvm/Support/ValueHolder.h"
#include "llvm/Type.h"
-namespace llvm {
+using namespace llvm;
ValueHolder::ValueHolder(Value *V) : User(Type::TypeTy, Value::TypeVal) {
Operands.push_back(Use(V, this));
}
-
-} // End llvm namespace