diff options
| author | MerryMage <MerryMage@users.noreply.github.com> | 2020-06-19 14:29:09 +0100 |
|---|---|---|
| committer | MerryMage <MerryMage@users.noreply.github.com> | 2020-06-19 14:29:09 +0100 |
| commit | 723639311469b6abb21d766fedad8fad3733106a (patch) | |
| tree | e66430c3ef7f4111efbdd43200752ec61f29be5e /src/core/file_sys | |
| parent | 0f7822acb17a8c2534792b074a6181abfb95ec69 (diff) | |
mii_model: Remove redundant std::move
Named return value optimization automatically applies here.
Diffstat (limited to 'src/core/file_sys')
| -rw-r--r-- | src/core/file_sys/system_archive/mii_model.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/system_archive/mii_model.cpp b/src/core/file_sys/system_archive/mii_model.cpp index 6a9add87c..61bb67945 100644 --- a/src/core/file_sys/system_archive/mii_model.cpp +++ b/src/core/file_sys/system_archive/mii_model.cpp @@ -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 |
