diff options
author | Brad Kittenbrink <brad@lindenlab.com> | 2020-04-02 10:55:31 -0700 |
---|---|---|
committer | euclid <euclid@Euclid-MBP-2019.local> | 2020-04-17 10:31:01 -0600 |
commit | 11e9fbefeb11f4ed90e22e7f0a0558442317875e (patch) | |
tree | c19c8966d5f5fc5cb5f1b7f891abaf4233f50fd4 /indra/newview/llcommandhandler.cpp | |
parent | 794778eede8e9081374d1021c465ba5e472d2e58 (diff) |
Fixed -Wstring-plus-int related errors for compatibility with Xcode-11.4
Diffstat (limited to 'indra/newview/llcommandhandler.cpp')
-rw-r--r-- | indra/newview/llcommandhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llcommandhandler.cpp b/indra/newview/llcommandhandler.cpp index 76d965b1f1..23e2271eae 100644 --- a/indra/newview/llcommandhandler.cpp +++ b/indra/newview/llcommandhandler.cpp @@ -222,7 +222,7 @@ struct symbol_info #define ent(SYMBOL) \ { \ - #SYMBOL + 28, /* skip "LLCommandHandler::UNTRUSTED_" prefix */ \ + &#SYMBOL[28], /* skip "LLCommandHandler::UNTRUSTED_" prefix */ \ SYMBOL \ } |