diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-20 09:21:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 09:21:15 -0700 |
commit | ffbd51e207fb5e2aaaa5f5a8861d4d3e55188376 (patch) | |
tree | 812c30415af58b2a478b005b10b81cd69bb5a5cd /src/core/loader/nca.cpp | |
parent | 701c7cb85ce48f627f422f593843fa692f785236 (diff) | |
parent | 8874d0e657be9b2f03608a91bcf5edf433e576c7 (diff) |
Merge pull request #737 from lioncash/move
filesys/loader: std::move VirtualFile instances in constructors where applicable
Diffstat (limited to 'src/core/loader/nca.cpp')
-rw-r--r-- | src/core/loader/nca.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/loader/nca.cpp b/src/core/loader/nca.cpp index e73b253b2..c80df23be 100644 --- a/src/core/loader/nca.cpp +++ b/src/core/loader/nca.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <utility> #include <vector> #include "common/file_util.h" @@ -21,7 +22,7 @@ namespace Loader { -AppLoader_NCA::AppLoader_NCA(FileSys::VirtualFile file) : AppLoader(file) {} +AppLoader_NCA::AppLoader_NCA(FileSys::VirtualFile file) : AppLoader(std::move(file)) {} FileType AppLoader_NCA::IdentifyType(const FileSys::VirtualFile& file) { // TODO(DarkLordZach): Assuming everything is decrypted. Add crypto support. |