diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-01-28 11:06:01 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-01-28 11:06:01 -0500 |
commit | 8ab541532083c344a41e18c396b1bcb7fba19bb4 (patch) | |
tree | ff06cb9b18a8260939e34c00f9e9f30bc58ad17d /indra | |
parent | c92079db31f60196c2c70d6733aeaaaa40f1f485 (diff) |
SL-315 - fix for LLCallStack stubs for mac/linux.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llcallstack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llcallstack.cpp b/indra/llcommon/llcallstack.cpp index e4b3cfeab5..cb77591c7c 100644 --- a/indra/llcommon/llcallstack.cpp +++ b/indra/llcommon/llcallstack.cpp @@ -65,7 +65,7 @@ class LLCallStackImpl public: LLCallStackImpl() {} ~LLCallStackImpl() {} - void getStack(std::vector<std::string>& stack, S32 skip_count=0) + void getStack(std::vector<std::string>& stack, S32 skip_count=0, bool verbose=false) { stack.clear(); } |