nro: Replace inclusion with a forward declaration
It's sufficient to use a forward declaration instead of a direct inclusion here.
This commit is contained in:
parent
a2c69eb949
commit
3a72ee5fec
2 changed files with 8 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
|||
#include <vector>
|
||||
|
||||
#include "common/common_funcs.h"
|
||||
#include "common/common_types.h"
|
||||
#include "common/file_util.h"
|
||||
#include "common/logging/log.h"
|
||||
#include "common/swap.h"
|
||||
|
@ -106,6 +107,8 @@ AppLoader_NRO::AppLoader_NRO(FileSys::VirtualFile file) : AppLoader(file) {
|
|||
}
|
||||
}
|
||||
|
||||
AppLoader_NRO::~AppLoader_NRO() = default;
|
||||
|
||||
FileType AppLoader_NRO::IdentifyType(const FileSys::VirtualFile& file) {
|
||||
// Read NSO header
|
||||
NroHeader nro_header{};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue