trival: fix compiling errors for Linux.
parent
4a29253a59
commit
c876e78c10
|
|
@ -52,12 +52,12 @@ public:
|
|||
void ref() const ;
|
||||
S32 unref() const ;
|
||||
#else
|
||||
inline void LLRefCount::ref() const
|
||||
void LLRefCount::ref() const
|
||||
{
|
||||
mRef++;
|
||||
}
|
||||
|
||||
inline S32 LLRefCount::unref() const
|
||||
S32 LLRefCount::unref() const
|
||||
{
|
||||
llassert(mRef >= 1);
|
||||
if (0 == --mRef)
|
||||
|
|
|
|||
Loading…
Reference in New Issue