From c876e78c10d749f3d4ec9ba00e6ef0ca1cfd4851 Mon Sep 17 00:00:00 2001 From: Xiaohong Bao Date: Tue, 4 Jan 2011 17:51:58 -0700 Subject: trival: fix compiling errors for Linux. --- indra/llcommon/llrefcount.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'indra/llcommon') diff --git a/indra/llcommon/llrefcount.h b/indra/llcommon/llrefcount.h index 693c1c4b83..868789de4d 100644 --- a/indra/llcommon/llrefcount.h +++ b/indra/llcommon/llrefcount.h @@ -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) -- cgit v1.2.3