aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/ValueMapper.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-01-09 06:12:26 +0000
committerChris Lattner <sabre@nondot.org>2004-01-09 06:12:26 +0000
commitf7703df4968084c18c248c1feea9961c19a32e6a (patch)
tree5a3e4830177c09d61c4bf51e8d6ef6338d172196 /lib/Transforms/Utils/ValueMapper.h
parent21949d90881e89ab9c7b752f82f51577a1f0c095 (diff)
Finegrainify namespacification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/ValueMapper.h')
-rw-r--r--lib/Transforms/Utils/ValueMapper.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/Transforms/Utils/ValueMapper.h b/lib/Transforms/Utils/ValueMapper.h
index e67b3261db..941a8b3c5d 100644
--- a/lib/Transforms/Utils/ValueMapper.h
+++ b/lib/Transforms/Utils/ValueMapper.h
@@ -18,11 +18,8 @@
#include <map>
namespace llvm {
-
-class Value;
-
-Value *MapValue(const Value *V, std::map<const Value*, Value*> &VM);
-
+ class Value;
+ Value *MapValue(const Value *V, std::map<const Value*, Value*> &VM);
} // End llvm namespace
#endif