diff options
author | richard <none@none> | 2010-02-01 12:39:59 -0800 |
---|---|---|
committer | richard <none@none> | 2010-02-01 12:39:59 -0800 |
commit | 45e700cb3ef9c56aaf373a8b4acafb4fc07a5972 (patch) | |
tree | 394d990d038387952d0668da989dd4d7da072c86 /indra/llcommon/llrefcount.cpp | |
parent | c339017d2e156a68f1e300a7668f2a9f6e6141f7 (diff) | |
parent | f99a7b23ae0cee0d3e96b0b89d82e5c35bb07433 (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) { |