summaryrefslogtreecommitdiff
path: root/include/llvm/Use.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Use.h')
-rw-r--r--include/llvm/Use.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/llvm/Use.h b/include/llvm/Use.h
index 4deee300f6..f94045b39e 100644
--- a/include/llvm/Use.h
+++ b/include/llvm/Use.h
@@ -17,6 +17,9 @@
#define LLVM_USE_H
#include "Support/ilist"
+
+namespace llvm {
+
template<typename NodeTy> struct ilist_traits;
class Value;
class User;
@@ -77,13 +80,13 @@ struct ilist_traits<Use> {
};
-template<> struct simplify_type<Use> {
+template<> struct std::simplify_type<Use> {
typedef Value* SimpleType;
static SimpleType getSimplifiedValue(const Use &Val) {
return (SimpleType)Val.get();
}
};
-template<> struct simplify_type<const Use> {
+template<> struct std::simplify_type<const Use> {
typedef Value* SimpleType;
static SimpleType getSimplifiedValue(const Use &Val) {
return (SimpleType)Val.get();
@@ -150,4 +153,6 @@ struct UseListConstIteratorWrapper : public iplist<Use>::const_iterator {
}
};
+} // End llvm namespace
+
#endif