summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorXiaohong Bao <bao@lindenlab.com>2011-01-04 17:51:58 -0700
committerXiaohong Bao <bao@lindenlab.com>2011-01-04 17:51:58 -0700
commitc876e78c10d749f3d4ec9ba00e6ef0ca1cfd4851 (patch)
tree5072c10753862c8e87606cfe4cba11d070cff285 /indra/llcommon
parent4a29253a59140727334084768ebc7850d3d94eed (diff)
trival: fix compiling errors for Linux.
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)