diff options
Diffstat (limited to 'indra/llcommon')
| -rw-r--r-- | indra/llcommon/llcallstack.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/indra/llcommon/llcallstack.h b/indra/llcommon/llcallstack.h index ad10a9dbf7..33f2b507b8 100644 --- a/indra/llcommon/llcallstack.h +++ b/indra/llcommon/llcallstack.h @@ -79,9 +79,13 @@ struct LLContextStatus  LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLContextStatus& context_status); +#ifndef LL_RELEASE_FOR_DOWNLOAD  #define dumpStack(tag)                          \      LL_DEBUGS(tag) << "STACK:\n"                \                     << "====================\n"  \                     << LLCallStack()             \                     << "===================="    \                     << LL_ENDL; +#else +#define dumpStack(tag) +#endif | 
