diff options
author | Richard Linden <none@none> | 2012-10-19 19:35:01 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-10-19 19:35:01 -0700 |
commit | 176ffa54b44f2ef73f23e3252dd439f52fab3265 (patch) | |
tree | a261deb62bf993388805146119c15fadef917732 /indra/llcommon/llinitparam.cpp | |
parent | bd52d784f904cb0b46be5826f6c7df31b214fc09 (diff) |
SH-3405 WIP convert existing stats to lltrace system
finished most of conversion of llviewerassetstats
ported some param block fixes from viewer-chui
converted viewer asset stats to param block format
Diffstat (limited to 'indra/llcommon/llinitparam.cpp')
-rw-r--r-- | indra/llcommon/llinitparam.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/indra/llcommon/llinitparam.cpp b/indra/llcommon/llinitparam.cpp index db72aa19b9..54e98e66f3 100644 --- a/indra/llcommon/llinitparam.cpp +++ b/indra/llcommon/llinitparam.cpp @@ -196,12 +196,7 @@ namespace LLInitParam if (serialize_func) { const Param* diff_param = diff_block ? diff_block->getParamFromHandle(param_handle) : NULL; - // each param descriptor remembers its serial number - // so we can inspect the same param under different names - // and see that it has the same number - name_stack.push_back(std::make_pair("", true)); serialize_func(*param, parser, name_stack, diff_param); - name_stack.pop_back(); } } |