diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-10-22 12:04:59 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-10-22 12:04:59 -0400 |
commit | 77f9ab96779c55a20a5ccd8b9e906227b3e8e5c8 (patch) | |
tree | 22b61426e40fc844ea81aae2ae98cf7bc5edf824 | |
parent | 7f094aa20418b3c46a0c2c1d0730b0a14c058a6f (diff) |
Remove move
-rw-r--r-- | indra/llcommon/coro_scheduler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/coro_scheduler.cpp b/indra/llcommon/coro_scheduler.cpp index 7b900a13f6..b6117fa6a1 100644 --- a/indra/llcommon/coro_scheduler.cpp +++ b/indra/llcommon/coro_scheduler.cpp @@ -97,7 +97,7 @@ boost::fibers::context* scheduler::pick_next() noexcept // much time, consider also binding and reporting // boost::stacktrace::stacktrace(). queue->post( - [name=std::move(data.getName()), elapsed] + [name=data.getName(), elapsed] { LL_WARNS_ONCE("LLCoros.scheduler") << "Coroutine " << name << " ran for " |