use std::move

pull/1272/head
Jeff Becker 4 years ago
parent 96cbab33c3
commit 9298313066
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 = m_LogicCalls.popFront();
auto f = std::move(m_LogicCalls.popFront());
f();
}
}

Loading…
Cancel
Save