summaryrefslogtreecommitdiff
path: root/indra/llcommon/llpreprocessor.h
diff options
context:
space:
mode:
authorRye <rye@alchemyviewer.org>2025-08-28 06:08:13 -0400
committerRye <rye@alchemyviewer.org>2025-08-28 06:08:13 -0400
commit2b44464a143c3b32ef4d3de4456b100e34ad79ef (patch)
tree43e67d6a56fa066f92918b1e3dc13c4f97ea0500 /indra/llcommon/llpreprocessor.h
parent96ff5f8e70396b53168682c4a1addb9a61d45e7c (diff)
Fix up windows build error in GHA
Diffstat (limited to 'indra/llcommon/llpreprocessor.h')
-rw-r--r--indra/llcommon/llpreprocessor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llpreprocessor.h b/indra/llcommon/llpreprocessor.h
index d2a29d06b4..b2a9734548 100644
--- a/indra/llcommon/llpreprocessor.h
+++ b/indra/llcommon/llpreprocessor.h
@@ -181,7 +181,7 @@
#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_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