summaryrefslogtreecommitdiff
path: root/indra/llcommon/llcallstack.h
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2016-01-26 11:11:52 -0500
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2016-01-26 11:11:52 -0500
commite91a192301db37f99a4f5a817f3b4c47b448417a (patch)
tree92ca390554fe05d82a91e11bc78eeb618994d91d /indra/llcommon/llcallstack.h
parent5345d1e115fdf3fca7ea3e8330f1a23ad19257c8 (diff)
SL-315 WIP - added callstack info to joint debugging. Made joint debugging run-time configurable via debug setting DebugAvatarJoints
Diffstat (limited to 'indra/llcommon/llcallstack.h')
-rw-r--r--indra/llcommon/llcallstack.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/llcallstack.h b/indra/llcommon/llcallstack.h
index 6059d4f2c5..598db3d404 100644
--- a/indra/llcommon/llcallstack.h
+++ b/indra/llcommon/llcallstack.h
@@ -29,10 +29,11 @@ class LLCallStackImpl;
class LLCallStack
{
public:
- LLCallStack();
+ LLCallStack(S32 skip_count=0);
std::vector<std::string> m_strings;
private:
static LLCallStackImpl *s_impl;
+ S32 m_skipCount;
};
LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLCallStack& call_stack);