diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-02-01 08:27:58 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-02-01 08:27:58 -0500 |
commit | 19de8f3993da24d906a886b58125c4954ce4c79e (patch) | |
tree | ff06cb9b18a8260939e34c00f9e9f30bc58ad17d /indra/llcommon | |
parent | 674c68cc92ab8c3551fde4243562dfa401e868a1 (diff) |
SL-315 - untest old stack trace
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llcallstack.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/indra/llcommon/llcallstack.cpp b/indra/llcommon/llcallstack.cpp index 7474d4708b..cb77591c7c 100644 --- a/indra/llcommon/llcallstack.cpp +++ b/indra/llcommon/llcallstack.cpp @@ -26,7 +26,6 @@ #include "llcommon.h" #include "llcallstack.h" -#include "llstacktrace.h" #include "StackWalker.h" #if LL_WINDOWS @@ -94,13 +93,5 @@ std::ostream& operator<<(std::ostream& s, const LLCallStack& call_stack) { s << *it; } - std::vector<std::string> og_lines; - ll_get_stack_trace(og_lines); - s << "\nOLD SCHOOL STACK\n"; - for (it=og_lines.begin(); it!=og_lines.end(); ++it) - { - s << *it; - } - return s; } |