summaryrefslogtreecommitdiff
path: root/src/core/loader/nro.h
diff options
context:
space:
mode:
authorGravatar Lioncash2019-03-19 20:45:55 -0400
committerGravatar Lioncash2019-03-19 21:31:59 -0400
commitab00552118eeba8330362a54ab8748916b5a5c65 (patch)
tree74e48c8b16e9a979a1bfcae22239411bb6f7fc79 /src/core/loader/nro.h
parentMerge pull request #2258 from lioncash/am (diff)
downloadyuzu-ab00552118eeba8330362a54ab8748916b5a5c65.tar.gz
yuzu-ab00552118eeba8330362a54ab8748916b5a5c65.tar.xz
yuzu-ab00552118eeba8330362a54ab8748916b5a5c65.zip
loader: Remove Linker inheritance from NRO and NSO loaders
Neither the NRO or NSO loaders actually make use of the functions or members provided by the Linker interface, so we can just remove the inheritance altogether.
Diffstat (limited to 'src/core/loader/nro.h')
-rw-r--r--src/core/loader/nro.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/loader/nro.h b/src/core/loader/nro.h
index 013d629c0..85b0ed644 100644
--- a/src/core/loader/nro.h
+++ b/src/core/loader/nro.h
@@ -4,10 +4,10 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <memory>
7#include <string> 8#include <string>
8#include <vector> 9#include <vector>
9#include "common/common_types.h" 10#include "common/common_types.h"
10#include "core/loader/linker.h"
11#include "core/loader/loader.h" 11#include "core/loader/loader.h"
12 12
13namespace FileSys { 13namespace FileSys {
@@ -21,7 +21,7 @@ class Process;
21namespace Loader { 21namespace Loader {
22 22
23/// Loads an NRO file 23/// Loads an NRO file
24class AppLoader_NRO final : public AppLoader, Linker { 24class AppLoader_NRO final : public AppLoader {
25public: 25public:
26 explicit AppLoader_NRO(FileSys::VirtualFile file); 26 explicit AppLoader_NRO(FileSys::VirtualFile file);
27 ~AppLoader_NRO() override; 27 ~AppLoader_NRO() override;