From 4198f47ab67d8a628c36eed407389ee4a2335a7b Mon Sep 17 00:00:00 2001 From: Shyotl Date: Fri, 3 Apr 2020 00:33:19 -0500 Subject: [PATCH] Fix header breakage in debug/relwithdebug --- indra/llcommon/llerror.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/indra/llcommon/llerror.h b/indra/llcommon/llerror.h index fe1c15b76..90ef40bf6 100644 --- a/indra/llcommon/llerror.h +++ b/indra/llcommon/llerror.h @@ -353,10 +353,10 @@ typedef LLError::NoClassInfo _LL_CLASS_TO_LOG; // NEW Macros for debugging, allow the passing of a string tag -#if SHOW_DEBUG -#define DO_DEBUG_LOG if(true) +#ifdef SHOW_DEBUG +#define DO_DEBUG_LOG #else -#define DO_DEBUG_LOG if(false) +#define DO_DEBUG_LOG if (false) #endif // Pass comma separated list of tags (currently only supports up to 0, 1, or 2)