Skip to content

Commit 4198f47

Browse files
committed
Fix header breakage in debug/relwithdebug
1 parent d9049ba commit 4198f47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

indra/llcommon/llerror.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,10 @@ typedef LLError::NoClassInfo _LL_CLASS_TO_LOG;
353353

354354
// NEW Macros for debugging, allow the passing of a string tag
355355

356-
#if SHOW_DEBUG
357-
#define DO_DEBUG_LOG if(true)
356+
#ifdef SHOW_DEBUG
357+
#define DO_DEBUG_LOG
358358
#else
359-
#define DO_DEBUG_LOG if(false)
359+
#define DO_DEBUG_LOG if (false)
360360
#endif
361361

362362
// Pass comma separated list of tags (currently only supports up to 0, 1, or 2)

0 commit comments

Comments
 (0)