BUILDFIX: fixing linux build breakage
cleaning up a bit of syntax that gcc is complaining about. reviewed by baomaster
parent
e9e5806d67
commit
d8cf705d01
|
|
@ -52,12 +52,12 @@ public:
|
|||
void ref() const ;
|
||||
S32 unref() const ;
|
||||
#else
|
||||
void LLRefCount::ref() const
|
||||
inline void ref() const
|
||||
{
|
||||
mRef++;
|
||||
}
|
||||
|
||||
S32 LLRefCount::unref() const
|
||||
inline S32 unref() const
|
||||
{
|
||||
llassert(mRef >= 1);
|
||||
if (0 == --mRef)
|
||||
|
|
|
|||
Loading…
Reference in New Issue