forked from eden-emu/eden
Loader: Remove unnecessary pointer indirection to IOFile
This commit is contained in:
parent
c385b7767d
commit
2d7299a86f
10 changed files with 50 additions and 50 deletions
|
@ -17,7 +17,7 @@ namespace Loader {
|
|||
/// Loads an ELF/AXF file
|
||||
class AppLoader_ELF final : public AppLoader {
|
||||
public:
|
||||
AppLoader_ELF(std::unique_ptr<FileUtil::IOFile>&& file, std::string filename)
|
||||
AppLoader_ELF(FileUtil::IOFile&& file, std::string filename)
|
||||
: AppLoader(std::move(file)), filename(std::move(filename)) { }
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue