diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2018-05-17 06:15:41 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2018-05-17 06:15:41 -0400 |
commit | c45fc5a381de69ab95680f8902c4fdfddd7cd97a (patch) | |
tree | ffb084cec159eefd368306dd74a07b5ade3b611e /indra/llcommon/llpreprocessor.h | |
parent | 78b8a0c3e44d7ae0931da7ea6064a12bd3d77b8c (diff) | |
parent | c09d9c12e79fde83a87b2394c88b32e568271eda (diff) |
SL-821: Merge LL_TO_WSTRING(), WSTRINGIZE() changes.
Diffstat (limited to 'indra/llcommon/llpreprocessor.h')
-rw-r--r-- | indra/llcommon/llpreprocessor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llcommon/llpreprocessor.h b/indra/llcommon/llpreprocessor.h index 2879038c36..ef015fdce4 100644 --- a/indra/llcommon/llpreprocessor.h +++ b/indra/llcommon/llpreprocessor.h @@ -198,6 +198,8 @@ #define LL_TO_STRING_HELPER(x) #x #define LL_TO_STRING(x) LL_TO_STRING_HELPER(x) +#define LL_TO_WSTRING_HELPER(x) L#x +#define LL_TO_WSTRING(x) LL_TO_WSTRING_HELPER(x) #define LL_FILE_LINENO_MSG(msg) __FILE__ "(" LL_TO_STRING(__LINE__) ") : " msg #define LL_GLUE_IMPL(x, y) x##y #define LL_GLUE_TOKENS(x, y) LL_GLUE_IMPL(x, y) |