summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-01-21 14:42:11 -0800
committerTofu Linden <tofu.linden@lindenlab.com>2010-01-21 14:42:11 -0800
commita0666bdb70ebb6c6838c22829a4d25b6c2b4e517 (patch)
treed74fee81df55f0057f4dc85c78a3c715b54c0434 /indra/llcommon
parent24c8ed10470b1fe6cc58ba5b2e07a34a183cb1c6 (diff)
Turn on llassert() and llverify() for RelWithDebInfo builds.
Convert top firing asserts into big warnings. To be reviewed by Mani.
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llerrorlegacy.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llcommon/llerrorlegacy.h b/indra/llcommon/llerrorlegacy.h
index 7a970b1466..9920921a58 100644
--- a/indra/llcommon/llerrorlegacy.h
+++ b/indra/llcommon/llerrorlegacy.h
@@ -75,6 +75,10 @@ const int LL_ERR_PRICE_MISMATCH = -23018;
#define SHOW_ASSERT
#else // _DEBUG
+#ifdef LL_RELEASE_WITH_DEBUG_INFO
+#define SHOW_ASSERT
+#endif // LL_RELEASE_WITH_DEBUG_INFO
+
#ifdef RELEASE_SHOW_DEBUG
#define SHOW_DEBUG
#endif