diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2021-05-13 22:10:43 -0400 |
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2021-05-13 22:10:43 -0400 |
| commit | d3d8203be4aec8ad90c0044e3a0ade1d91df64ea (patch) | |
| tree | f244144045e09df2a21a9271ab3a55ac3f356e3c /indra/llmessage/lldispatcher.cpp | |
| parent | f7f6553cac78f1cf00cc1776de95f578e5853109 (diff) | |
SL-15258: Remove additional std library features dropped with C++17.
Diffstat (limited to 'indra/llmessage/lldispatcher.cpp')
| -rw-r--r-- | indra/llmessage/lldispatcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/lldispatcher.cpp b/indra/llmessage/lldispatcher.cpp index 717ef10f70..8dfd924f31 100644 --- a/indra/llmessage/lldispatcher.cpp +++ b/indra/llmessage/lldispatcher.cpp @@ -62,7 +62,7 @@ void LLDispatcher::copyAllHandlerNames(keys_t& names) const mHandlers.begin(), mHandlers.end(), std::back_insert_iterator<keys_t>(names), - llselect1st<dispatch_map_t::value_type>()); + [](const dispatch_map_t::value_type& pair){ return pair.first; }); } bool LLDispatcher::dispatch( |
