diff options
author | richard <none@none> | 2010-01-22 17:40:28 -0800 |
---|---|---|
committer | richard <none@none> | 2010-01-22 17:40:28 -0800 |
commit | 947398563e8082fae2583d2749b69ad16611eae5 (patch) | |
tree | 61aab38a32e6822d96cc8efe094d41f89b378861 /indra/llcommon/llrefcount.cpp | |
parent | fa891c062ef66410123c66de1ef67b7dcef327db (diff) | |
parent | 955c0cc5a9ab8fb9eda7a6c20cd7bd09c2fd9369 (diff) |
merge
Diffstat (limited to 'indra/llcommon/llrefcount.cpp')
-rw-r--r-- | indra/llcommon/llrefcount.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/llcommon/llrefcount.cpp b/indra/llcommon/llrefcount.cpp index 33b6875fb0..c90b52f482 100644 --- a/indra/llcommon/llrefcount.cpp +++ b/indra/llcommon/llrefcount.cpp @@ -35,6 +35,17 @@ #include "llerror.h" +LLRefCount::LLRefCount(const LLRefCount& other) +: mRef(0) +{ +} + +LLRefCount& LLRefCount::operator=(const LLRefCount&) +{ + // do nothing, since ref count is specific to *this* reference + return *this; +} + LLRefCount::LLRefCount() : mRef(0) { |