summaryrefslogtreecommitdiff
path: root/indra/llimage
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-10-01 17:18:35 -0700
committerRichard Linden <none@none>2013-10-01 17:18:35 -0700
commit9bae912308a75cc1ceaec49d28b50f7119ec02ba (patch)
tree49e879fad805e7330eeaf563fc2376196a6f4b38 /indra/llimage
parent59628d6f85deed89cb35d9343183069cfccd13c0 (diff)
BUILDFIX: old style fast timer use, broken unit test
Diffstat (limited to 'indra/llimage')
-rwxr-xr-xindra/llimage/tests/llimageworker_test.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/llimage/tests/llimageworker_test.cpp b/indra/llimage/tests/llimageworker_test.cpp
index 8c9fefca90..c030b105fb 100755
--- a/indra/llimage/tests/llimageworker_test.cpp
+++ b/indra/llimage/tests/llimageworker_test.cpp
@@ -44,11 +44,9 @@
// * Do not make any assumption as to how those classes or methods work (i.e. don't copy/paste code)
// * A simulator for a class can be implemented here. Please comment and document thoroughly.
-//LLTrace::MemStatHandle LLImageBase::sMemStat("LLImage");
-
-
LLImageBase::LLImageBase()
-: mData(NULL),
+: LLTrace::MemTrackable<LLImageBase>("LLImageBase"),
+mData(NULL),
mDataSize(0),
mWidth(0),
mHeight(0),