diff options
author | Richard Linden <none@none> | 2013-08-23 13:41:51 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-08-23 13:41:51 -0700 |
commit | a77f42494584537489410a5157179aaadf868935 (patch) | |
tree | 22e283bc06929dcceb6bc5bdc0025069d6ea143a /indra/llcommon/llerror.h | |
parent | c95d0b884371045a46c345d43fab90b5f3d6ccb2 (diff) |
BUILDFIX: fix for crashes in unit tests on mac and linux
Diffstat (limited to 'indra/llcommon/llerror.h')
-rwxr-xr-x | indra/llcommon/llerror.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/llerror.h b/indra/llcommon/llerror.h index 6eaab450ed..6cac952b7e 100755 --- a/indra/llcommon/llerror.h +++ b/indra/llcommon/llerror.h @@ -302,7 +302,8 @@ typedef LLError::NoClassInfo _LL_CLASS_TO_LOG; // See top of file for common usage. ///////////////////////////////// -// this macro uses a one-shot do statement to avoid parsing errors when writing: +// this macro uses a one-shot do statement to avoid parsing errors when writing control flow statements +// without braces: // if (condition) LL_INFOS() << "True" << LLENDL; else LLINFOS() << "False" << LLENDL #define lllog(level, once, ...) \ |