diff options
author | Chris Lattner <sabre@nondot.org> | 2003-07-25 17:39:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-07-25 17:39:33 +0000 |
commit | 0192e36cc7d632ec8f9f3e4a8fd2fa6a7403264c (patch) | |
tree | e545124ebcd3cec98df2a6427eb9892ae1393c3d /include/llvm/AbstractTypeUser.h | |
parent | ceef97a5352660d62a77ea5a1b83a026a6da186d (diff) |
Remove inline declarations that GCC 3.3 doesn't like without a body
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7312 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/AbstractTypeUser.h')
-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(); }; |