diff options
author | Brad Kittenbrink <brad@lindenlab.com> | 2020-04-02 10:55:31 -0700 |
---|---|---|
committer | euclid <euclid@Euclid-MBP-2019.local> | 2020-05-04 12:11:57 -0600 |
commit | 2c651f3e21c5eeb0cc361e7b03dcb507c96593d8 (patch) | |
tree | abc3fab8ae71f0dc8f1d909fb19f943333868d24 /indra/llcommon | |
parent | 2df08951e102c05335ce4143fe436b40cc34d22a (diff) |
Fixed -Wstring-plus-int related errors for compatibility with Xcode-11.4
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llsdutil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llsdutil.cpp b/indra/llcommon/llsdutil.cpp index 6a23c443a0..1f8384f415 100644 --- a/indra/llcommon/llsdutil.cpp +++ b/indra/llcommon/llsdutil.cpp @@ -506,7 +506,7 @@ struct Data const char* name; } typedata[] = { -#define def(type) { LLSD::type, #type + 4 } +#define def(type) { LLSD::type, &#type[4] } def(TypeUndefined), def(TypeBoolean), def(TypeInteger), |