mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +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 std::move(result);
|
||||
return result;
|
||||
}))
|
||||
{
|
||||
return error;
|
||||
|
|
Loading…
Add table
Reference in a new issue