diff options
Diffstat (limited to 'src/core/loader/elf.h')
| -rw-r--r-- | src/core/loader/elf.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/loader/elf.h b/src/core/loader/elf.h index cb3724f9d..584bf6e27 100644 --- a/src/core/loader/elf.h +++ b/src/core/loader/elf.h | |||
| @@ -5,7 +5,6 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <string> | 7 | #include <string> |
| 8 | |||
| 9 | #include "common/common_types.h" | 8 | #include "common/common_types.h" |
| 10 | #include "core/loader/loader.h" | 9 | #include "core/loader/loader.h" |
| 11 | 10 | ||
| @@ -18,7 +17,7 @@ namespace Loader { | |||
| 18 | class AppLoader_ELF final : public AppLoader { | 17 | class AppLoader_ELF final : public AppLoader { |
| 19 | public: | 18 | public: |
| 20 | AppLoader_ELF(FileUtil::IOFile&& file, std::string filename) | 19 | AppLoader_ELF(FileUtil::IOFile&& file, std::string filename) |
| 21 | : AppLoader(std::move(file)), filename(std::move(filename)) { } | 20 | : AppLoader(std::move(file)), filename(std::move(filename)) {} |
| 22 | 21 | ||
| 23 | /** | 22 | /** |
| 24 | * Returns the type of the file | 23 | * Returns the type of the file |