summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-11-14 06:03:05 +0000
committerChris Lattner <sabre@nondot.org>2003-11-14 06:03:05 +0000
commit60e9742e8270c44f5fd83dd269633681bee42cb5 (patch)
treeb35a06efed13edbf897efbeaee8304e073b1a86e /include
parent3449f4f1dbb4fbcd93f42a13b1153a8b5fe4d7ca (diff)
downloadexternal_llvm-60e9742e8270c44f5fd83dd269633681bee42cb5.zip
external_llvm-60e9742e8270c44f5fd83dd269633681bee42cb5.tar.gz
external_llvm-60e9742e8270c44f5fd83dd269633681bee42cb5.tar.bz2
This is obviously illegal C++ code, but was apparently accepted by 3.3
bork git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9993 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Use.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Use.h b/include/llvm/Use.h
index f94045b..d7c1010 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();