aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/User.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-02-27 06:15:51 +0000
committerChris Lattner <sabre@nondot.org>2005-02-27 06:15:51 +0000
commitf8db8a04328f11fada2cf81f4b8b2431b3fb1548 (patch)
treec69b88d4aefb48bc0be37586812ca29bc053bb7a /include/llvm/User.h
parent47b72fbf2973a05b4b7e0f47876f6d99581278cd (diff)
downloadexternal_llvm-f8db8a04328f11fada2cf81f4b8b2431b3fb1548.zip
external_llvm-f8db8a04328f11fada2cf81f4b8b2431b3fb1548.tar.gz
external_llvm-f8db8a04328f11fada2cf81f4b8b2431b3fb1548.tar.bz2
Fix spelling, patch contributed by Gabor Greif
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20342 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/User.h')
-rw-r--r--include/llvm/User.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/User.h b/include/llvm/User.h
index 0e98da5..21d112b 100644
--- a/include/llvm/User.h
+++ b/include/llvm/User.h
@@ -97,6 +97,7 @@ template<> struct simplify_type<User::op_iterator> {
return static_cast<SimpleType>(Val->get());
}
};
+
template<> struct simplify_type<const User::op_iterator>
: public simplify_type<User::op_iterator> {};
@@ -107,6 +108,7 @@ template<> struct simplify_type<User::const_op_iterator> {
return static_cast<SimpleType>(Val->get());
}
};
+
template<> struct simplify_type<const User::const_op_iterator>
: public simplify_type<User::const_op_iterator> {};