diff options
author | Loren Shih <seraph@lindenlab.com> | 2011-01-07 10:14:22 -0500 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2011-01-07 10:14:22 -0500 |
commit | 38ab28511473fb6882bab0d5a1ce3f372c48a171 (patch) | |
tree | f2031d960291b9f929f2d03221b565416f66e1a7 /indra/llcommon/llrefcount.h | |
parent | 1edf6b34c2ac2016529904df7b3155aea3455c7b (diff) | |
parent | d8cf705d0189ec34b1202ee50ea3e5991cf4c90f (diff) |
Automated merge from mesh-development
Diffstat (limited to 'indra/llcommon/llrefcount.h')
-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 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) |