summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--indra/llcommon/llrefcount.h4
1 files changed, 2 insertions, 2 deletions
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)