Skip to content
Snippets Groups Projects
Commit 72363931 authored by MerryMage's avatar MerryMage
Browse files

mii_model: Remove redundant std::move

Named return value optimization automatically applies here.
parent 0f7822ac
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment