From d8cf705d0189ec34b1202ee50ea3e5991cf4c90f Mon Sep 17 00:00:00 2001 From: "Nyx (Neal Orman)" Date: Thu, 6 Jan 2011 13:07:18 -0500 Subject: BUILDFIX: fixing linux build breakage cleaning up a bit of syntax that gcc is complaining about. reviewed by bao --- indra/llcommon/llrefcount.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'indra') diff --git a/indra/llcommon/llrefcount.h b/indra/llcommon/llrefcount.h index 868789de4d..8eb5d53f3f 100644 --- a/indra/llcommon/llrefcount.h +++ b/indra/llcommon/llrefcount.h @@ -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) -- cgit v1.2.3