diff options
| author | 2020-06-19 14:29:09 +0100 | |
|---|---|---|
| committer | 2020-06-19 14:29:09 +0100 | |
| commit | 723639311469b6abb21d766fedad8fad3733106a (patch) | |
| tree | e66430c3ef7f4111efbdd43200752ec61f29be5e /src/core/file_sys | |
| parent | Merge pull request #4080 from ogniK5377/audren-RendererInfo (diff) | |
| download | yuzu-723639311469b6abb21d766fedad8fad3733106a.tar.gz yuzu-723639311469b6abb21d766fedad8fad3733106a.tar.xz yuzu-723639311469b6abb21d766fedad8fad3733106a.zip | |
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() { | |||
| 40 | out->AddFile(std::make_shared<ArrayVfsFile<MiiModelData::SHAPE_MID.size()>>( | 40 | out->AddFile(std::make_shared<ArrayVfsFile<MiiModelData::SHAPE_MID.size()>>( |
| 41 | MiiModelData::SHAPE_MID, "ShapeMid.dat")); | 41 | MiiModelData::SHAPE_MID, "ShapeMid.dat")); |
| 42 | 42 | ||
| 43 | return std::move(out); | 43 | return out; |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | } // namespace FileSys::SystemArchive | 46 | } // namespace FileSys::SystemArchive |