diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/AbstractTypeUser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/AbstractTypeUser.h b/include/llvm/AbstractTypeUser.h index 5e16374968..7c6f429dc6 100644 --- a/include/llvm/AbstractTypeUser.h +++ b/include/llvm/AbstractTypeUser.h @@ -72,8 +72,8 @@ class PATypeHandle { // These functions are defined at the bottom of Type.h. See the comment there // for justification. - inline void addUser(); - inline void removeUser(); + void addUser(); + void removeUser(); public: // ctor - Add use to type if abstract. Note that Ty must not be null inline PATypeHandle(const Type *ty, AbstractTypeUser *user) @@ -121,7 +121,7 @@ public: // this, we MUST remove ourself from the AbstractTypeUser list, even though // the type is apparently concrete. // - inline void removeUserFromConcrete(); + void removeUserFromConcrete(); }; |