trival: fix compiling errors for Linux.

master
Xiaohong Bao 2011-01-04 17:51:58 -07:00
parent 4a29253a59
commit c876e78c10
1 changed files with 2 additions and 2 deletions

View File

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