diff options
author | Richard Linden <none@none> | 2013-07-01 19:26:56 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-07-01 19:26:56 -0700 |
commit | 048638e5ffec0cc08d79484412790b51558942fe (patch) | |
tree | e86d13872193a2ab60bef591a73f651cb27dba90 | |
parent | 8208a40412fac35593d4b8b13f43c6be5e4d6990 (diff) |
BUILDFIX: missed a couple of scope qualifiers
-rw-r--r-- | indra/llcommon/lltrace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/lltrace.h b/indra/llcommon/lltrace.h index e2c4b63276..2c45923aac 100644 --- a/indra/llcommon/lltrace.h +++ b/indra/llcommon/lltrace.h @@ -401,7 +401,7 @@ public: template<typename AMOUNT_T> AMOUNT_T& memClaimAmount(AMOUNT_T& size) { - MemStatAccumulator* accumulator = sMemStat.getPrimaryAccumulator(); + MemStatAccumulator* accumulator = DERIVED::sMemStat.getPrimaryAccumulator(); mMemFootprint += (size_t)size; if (accumulator) { @@ -428,7 +428,7 @@ public: template<typename AMOUNT_T> AMOUNT_T& memDisclaimAmount(AMOUNT_T& size) { - MemStatAccumulator* accumulator = sMemStat.getPrimaryAccumulator(); + MemStatAccumulator* accumulator = DERIVED::sMemStat.getPrimaryAccumulator(); if (accumulator) { accumulator->mSize.sample(accumulator->mSize.getLastValue() - (F64)size); |