mii_model: Remove redundant std::move
Named return value optimization automatically applies here.
This commit is contained in:
parent
0f7822acb1
commit
7236393114
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ VirtualDir MiiModel() {
|
||||||
out->AddFile(std::make_shared<ArrayVfsFile<MiiModelData::SHAPE_MID.size()>>(
|
out->AddFile(std::make_shared<ArrayVfsFile<MiiModelData::SHAPE_MID.size()>>(
|
||||||
MiiModelData::SHAPE_MID, "ShapeMid.dat"));
|
MiiModelData::SHAPE_MID, "ShapeMid.dat"));
|
||||||
|
|
||||||
return std::move(out);
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace FileSys::SystemArchive
|
} // namespace FileSys::SystemArchive
|
||||||
|
|
Loading…
Reference in a new issue