diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2011-01-04 17:51:58 -0700 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2011-01-04 17:51:58 -0700 |
commit | c876e78c10d749f3d4ec9ba00e6ef0ca1cfd4851 (patch) | |
tree | 5072c10753862c8e87606cfe4cba11d070cff285 /indra | |
parent | 4a29253a59140727334084768ebc7850d3d94eed (diff) |
trival: fix compiling errors for Linux.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llrefcount.h | 4 |
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) |