BUILDFIX: fixing linux build breakage

cleaning up a bit of syntax that gcc is complaining about.

reviewed by bao
master
Nyx (Neal Orman) 2011-01-06 13:07:18 -05:00
parent e9e5806d67
commit d8cf705d01
1 changed files with 2 additions and 2 deletions

View File

@ -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)