summaryrefslogtreecommitdiff
path: root/indra/llcommon/llcallstack.h
diff options
context:
space:
mode:
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 598db3d404..44a572838e 100644
--- a/indra/llcommon/llcallstack.h
+++ b/indra/llcommon/llcallstack.h
@@ -29,8 +29,9 @@ class LLCallStackImpl;
class LLCallStack
{
public:
- LLCallStack(S32 skip_count=0);
+ LLCallStack(S32 skip_count=0, bool verbose=false);
std::vector<std::string> m_strings;
+ bool m_verbose;
private:
static LLCallStackImpl *s_impl;
S32 m_skipCount;