diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-01-09 21:54:22 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-01-09 21:54:22 +0200 |
commit | 284a3cbee95a001c9f7f897a7dd6f81a4b974bd1 (patch) | |
tree | fff3265f0dfaeb35a540f3eac009b590178dfce1 /indra/newview | |
parent | ffe0948b4a28abb1def26dabd32b292d413e55d1 (diff) |
DRTVWR-599 OSX buildfix #3
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index b85ae408d4..2599b1e4a0 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -1206,7 +1206,7 @@ bool LLAppViewer::init() LLSD item(LeapCommand); LeapCommand.append(item); } - for (const std::string& leap : llsd::inArray(LeapCommand)) + for (const auto& leap : llsd::inArray(LeapCommand)) { LL_INFOS("InitInfo") << "processing --leap \"" << leap << '"' << LL_ENDL; // We don't have any better description of this plugin than the |