summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNyx (Neal Orman) <nyx@lindenlab.com>2011-01-06 13:07:18 -0500
committerNyx (Neal Orman) <nyx@lindenlab.com>2011-01-06 13:07:18 -0500
commitd8cf705d0189ec34b1202ee50ea3e5991cf4c90f (patch)
tree87ca6b58313078ce10d87ee7c4614e99533dfb20 /indra
parente9e5806d673b3a41629698a94f4253cecac59239 (diff)
BUILDFIX: fixing linux build breakage
cleaning up a bit of syntax that gcc is complaining about. reviewed by bao
Diffstat (limited to 'indra')
-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)