summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcommon')
-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 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)