diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-21 20:23:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-21 20:23:48 +0000 |
commit | 31f8499e83dc4dccbb57ea7e76d1fd49b7010d0c (patch) | |
tree | 7311a395f4b05b01958cb55d80ba5432ad7f32c3 /lib/VMCore/Value.cpp | |
parent | 23e1492bb1e67f740c232abe985ec6d609ffae63 (diff) |
Finegrainify namespacification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Value.cpp')
-rw-r--r-- | lib/VMCore/Value.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index f389eb0132..fcf0b7a4c4 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -17,8 +17,7 @@ #include "llvm/Constant.h" #include "Support/LeakDetector.h" #include <algorithm> - -namespace llvm { +using namespace llvm; //===----------------------------------------------------------------------===// // Value Class @@ -109,5 +108,3 @@ void User::replaceUsesOfWith(Value *From, Value *To) { setOperand(i, To); // Fix it now... } } - -} // End llvm namespace |