diff options
author | Chris Lattner <sabre@nondot.org> | 2005-02-27 06:15:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-02-27 06:15:51 +0000 |
commit | f8db8a04328f11fada2cf81f4b8b2431b3fb1548 (patch) | |
tree | c69b88d4aefb48bc0be37586812ca29bc053bb7a /include/llvm/User.h | |
parent | 47b72fbf2973a05b4b7e0f47876f6d99581278cd (diff) |
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.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/User.h b/include/llvm/User.h index 0e98da50e9..21d112b454 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> {}; |