mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-08 09:09:46 +00:00
lv2_obj::create: fix pessimizing move
Could have been preventing copy elision.
This commit is contained in:
parent
5b6537674f
commit
8ae727ca04
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ public:
|
||||||
return finalize_construct();
|
return finalize_construct();
|
||||||
}
|
}
|
||||||
|
|
||||||
return std::move(result);
|
return result;
|
||||||
}))
|
}))
|
||||||
{
|
{
|
||||||
return error;
|
return error;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue