mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-20 10:42:36 +00:00
Remove inline declarations that GCC 3.3 doesn't like without a body
llvm-svn: 7312
This commit is contained in:
parent
d776276bda
commit
56c01f1a1e
@ -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();
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user