diff options
author | Graham Linden <graham@lindenlab.com> | 2019-04-03 08:47:44 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2019-04-03 08:47:44 -0700 |
commit | 07f380d61a8f939e672dd1b07cc871dc799bdbc2 (patch) | |
tree | 481ec3af5594ff0d46a11534a2d645582db26270 /indra/llui | |
parent | 7d757e9cdac3e421c68376fc2373357b41a39787 (diff) |
Fix random Xcode 10.2 failures from unused vars and references to local objects.
Modified llwindowmacosx to pass some things by value instead.
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/lllayoutstack.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/indra/llui/lllayoutstack.cpp b/indra/llui/lllayoutstack.cpp index 69246a2f57..ce8dbb1f66 100644 --- a/indra/llui/lllayoutstack.cpp +++ b/indra/llui/lllayoutstack.cpp @@ -510,7 +510,6 @@ LLLayoutPanel* LLLayoutStack::findEmbeddedPanel(LLPanel* panelp) const { if (!panelp) return NULL; - e_panel_list_t::const_iterator panel_it; BOOST_FOREACH(LLLayoutPanel* p, mPanels) { if (p == panelp) |