mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-13 23:25:06 +00:00
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
This commit is contained in:
@@ -72,8 +72,8 @@ class PATypeHandle {
|
|||||||
|
|
||||||
// These functions are defined at the bottom of Type.h. See the comment there
|
// These functions are defined at the bottom of Type.h. See the comment there
|
||||||
// for justification.
|
// for justification.
|
||||||
inline void addUser();
|
void addUser();
|
||||||
inline void removeUser();
|
void removeUser();
|
||||||
public:
|
public:
|
||||||
// ctor - Add use to type if abstract. Note that Ty must not be null
|
// ctor - Add use to type if abstract. Note that Ty must not be null
|
||||||
inline PATypeHandle(const Type *ty, AbstractTypeUser *user)
|
inline PATypeHandle(const Type *ty, AbstractTypeUser *user)
|
||||||
@@ -121,7 +121,7 @@ public:
|
|||||||
// this, we MUST remove ourself from the AbstractTypeUser list, even though
|
// this, we MUST remove ourself from the AbstractTypeUser list, even though
|
||||||
// the type is apparently concrete.
|
// the type is apparently concrete.
|
||||||
//
|
//
|
||||||
inline void removeUserFromConcrete();
|
void removeUserFromConcrete();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user