diff options
-rw-r--r-- | include/llvm/Use.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Use.h b/include/llvm/Use.h index f94045b39e..d7c1010fc8 100644 --- a/include/llvm/Use.h +++ b/include/llvm/Use.h @@ -80,13 +80,13 @@ struct ilist_traits<Use> { }; -template<> struct std::simplify_type<Use> { +template<> struct simplify_type<Use> { typedef Value* SimpleType; static SimpleType getSimplifiedValue(const Use &Val) { return (SimpleType)Val.get(); } }; -template<> struct std::simplify_type<const Use> { +template<> struct simplify_type<const Use> { typedef Value* SimpleType; static SimpleType getSimplifiedValue(const Use &Val) { return (SimpleType)Val.get(); |