remove a std::move that prevents copy elision

pull/1272/head
Jeff Becker 4 years ago
parent dd87cd396b
commit c47a210302
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -737,7 +737,7 @@ namespace libuv
{
while (not m_LogicCalls.empty())
{
auto f = std::move(m_LogicCalls.popFront());
auto f = m_LogicCalls.popFront();
f();
}
}

Loading…
Cancel
Save