diff options
| author | 2018-09-03 21:20:34 -0400 | |
|---|---|---|
| committer | 2018-09-03 21:20:34 -0400 | |
| commit | 2afe8ac4a714de836ee58b45598a25c687a1bf12 (patch) | |
| tree | 18af783e535a854dd2fea5e6538b442c2372f994 /src/core/loader/loader.h | |
| parent | Merge pull request #1233 from lioncash/dynarmic (diff) | |
| parent | vfs_real: Forward declare IOFile (diff) | |
| download | yuzu-2afe8ac4a714de836ee58b45598a25c687a1bf12.tar.gz yuzu-2afe8ac4a714de836ee58b45598a25c687a1bf12.tar.xz yuzu-2afe8ac4a714de836ee58b45598a25c687a1bf12.zip | |
Merge pull request #1229 from lioncash/forward-decl
vfs_real: Forward declare IOFile
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 885fee84c..5a8540b0e 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -4,7 +4,6 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <algorithm> | ||
| 8 | #include <iosfwd> | 7 | #include <iosfwd> |
| 9 | #include <memory> | 8 | #include <memory> |
| 10 | #include <string> | 9 | #include <string> |
| @@ -12,7 +11,6 @@ | |||
| 12 | #include <vector> | 11 | #include <vector> |
| 13 | #include <boost/optional.hpp> | 12 | #include <boost/optional.hpp> |
| 14 | #include "common/common_types.h" | 13 | #include "common/common_types.h" |
| 15 | #include "common/file_util.h" | ||
| 16 | #include "core/file_sys/vfs.h" | 14 | #include "core/file_sys/vfs.h" |
| 17 | #include "core/hle/kernel/object.h" | 15 | #include "core/hle/kernel/object.h" |
| 18 | 16 | ||
| @@ -114,8 +112,8 @@ std::ostream& operator<<(std::ostream& os, ResultStatus status); | |||
| 114 | /// Interface for loading an application | 112 | /// Interface for loading an application |
| 115 | class AppLoader : NonCopyable { | 113 | class AppLoader : NonCopyable { |
| 116 | public: | 114 | public: |
| 117 | explicit AppLoader(FileSys::VirtualFile file) : file(std::move(file)) {} | 115 | explicit AppLoader(FileSys::VirtualFile file); |
| 118 | virtual ~AppLoader() {} | 116 | virtual ~AppLoader(); |
| 119 | 117 | ||
| 120 | /** | 118 | /** |
| 121 | * Returns the type of this file | 119 | * Returns the type of this file |