mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-28 10:13:48 +00:00
mii_model: Remove redundant std::move
Named return value optimization automatically applies here.
This commit is contained in:
parent
8ccd0aa8af
commit
b8983782ca
|
|
@ -40,7 +40,7 @@ VirtualDir MiiModel() {
|
|||
out->AddFile(std::make_shared<ArrayVfsFile<MiiModelData::SHAPE_MID.size()>>(
|
||||
MiiModelData::SHAPE_MID, "ShapeMid.dat"));
|
||||
|
||||
return std::move(out);
|
||||
return out;
|
||||
}
|
||||
|
||||
} // namespace FileSys::SystemArchive
|
||||
|
|
|
|||
Loading…
Reference in a new issue