diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-20 15:48:37 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-20 15:54:17 -0500 |
commit | 386df282a3ad340ddaf7ab054102858406b27198 (patch) | |
tree | 3b7e44f33dac0384d412fed61de3c5ad40db137d /src/core/loader/nro.h | |
parent | e75aba3ed0eb0933c023f955d4c2e53e58ef6a5f (diff) |
loader: Clean up ctors and includes.
Diffstat (limited to 'src/core/loader/nro.h')
-rw-r--r-- | src/core/loader/nro.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/loader/nro.h b/src/core/loader/nro.h index ae4c84fb7..599adb253 100644 --- a/src/core/loader/nro.h +++ b/src/core/loader/nro.h @@ -6,7 +6,6 @@ #include <string> #include "common/common_types.h" -#include "common/file_util.h" #include "core/hle/kernel/kernel.h" #include "core/loader/linker.h" #include "core/loader/loader.h" @@ -16,8 +15,7 @@ namespace Loader { /// Loads an NRO file class AppLoader_NRO final : public AppLoader, Linker { public: - AppLoader_NRO(FileUtil::IOFile&& file, std::string filepath) - : AppLoader(std::move(file)), filepath(std::move(filepath)) {} + AppLoader_NRO(FileUtil::IOFile&& file, std::string filepath); /** * Returns the type of the file |