mirror of
https://github.com/libretro/Play-.git
synced 2025-03-03 16:57:03 +00:00
Remove redundant std::move.
This commit is contained in:
parent
6cbb6511f4
commit
2fa4cd87df
@ -477,12 +477,10 @@ void CGSHandler::WriteRegisterMassively(RegisterWriteList registerWrites, const
|
||||
#endif
|
||||
|
||||
m_mailBox.SendCall(
|
||||
std::move(
|
||||
[this, massiveWrite = std::move(massiveWrite)] ()
|
||||
{
|
||||
WriteRegisterMassivelyImpl(massiveWrite);
|
||||
}
|
||||
)
|
||||
[this, massiveWrite = std::move(massiveWrite)] ()
|
||||
{
|
||||
WriteRegisterMassivelyImpl(massiveWrite);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user