diff options
| author | 2015-06-20 22:24:01 +0100 | |
|---|---|---|
| committer | 2015-06-28 00:36:53 +0100 | |
| commit | 8cf9eb7f431e235a39f380118cfd081a604ea1c9 (patch) | |
| tree | 40fb32350e16c85e65c44b121f8cf37d11ba6f13 /src/core | |
| parent | Citra: Fix the includes a bit, thanks to include-what-you-use. (diff) | |
| download | yuzu-8cf9eb7f431e235a39f380118cfd081a604ea1c9.tar.gz yuzu-8cf9eb7f431e235a39f380118cfd081a604ea1c9.tar.xz yuzu-8cf9eb7f431e235a39f380118cfd081a604ea1c9.zip | |
Common: Fix FileUtil includes, and everything relying on those.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/arm/disassembler/load_symbol_map.cpp | 1 | ||||
| -rw-r--r-- | src/core/core_timing.cpp | 1 | ||||
| -rw-r--r-- | src/core/file_sys/archive_extsavedata.cpp | 1 | ||||
| -rw-r--r-- | src/core/file_sys/archive_savedata.cpp | 1 | ||||
| -rw-r--r-- | src/core/file_sys/archive_savedatacheck.cpp | 1 | ||||
| -rw-r--r-- | src/core/file_sys/archive_systemsavedata.cpp | 1 | ||||
| -rw-r--r-- | src/core/loader/loader.cpp | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/src/core/arm/disassembler/load_symbol_map.cpp b/src/core/arm/disassembler/load_symbol_map.cpp index 13d26d170..eb20bf6f7 100644 --- a/src/core/arm/disassembler/load_symbol_map.cpp +++ b/src/core/arm/disassembler/load_symbol_map.cpp | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <sstream> | ||
| 5 | #include <string> | 6 | #include <string> |
| 6 | #include <vector> | 7 | #include <vector> |
| 7 | 8 | ||
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp index e53c2e606..0eb717c8d 100644 --- a/src/core/core_timing.cpp +++ b/src/core/core_timing.cpp | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | #include "common/assert.h" | 10 | #include "common/assert.h" |
| 11 | #include "common/chunk_file.h" | 11 | #include "common/chunk_file.h" |
| 12 | #include "common/string_util.h" | ||
| 12 | 13 | ||
| 13 | #include "core/arm/arm_interface.h" | 14 | #include "core/arm/arm_interface.h" |
| 14 | #include "core/core.h" | 15 | #include "core/core.h" |
diff --git a/src/core/file_sys/archive_extsavedata.cpp b/src/core/file_sys/archive_extsavedata.cpp index e50c58a52..ce26e6bee 100644 --- a/src/core/file_sys/archive_extsavedata.cpp +++ b/src/core/file_sys/archive_extsavedata.cpp | |||
| @@ -8,6 +8,7 @@ | |||
| 8 | #include "common/file_util.h" | 8 | #include "common/file_util.h" |
| 9 | #include "common/logging/log.h" | 9 | #include "common/logging/log.h" |
| 10 | #include "common/make_unique.h" | 10 | #include "common/make_unique.h" |
| 11 | #include "common/string_util.h" | ||
| 11 | 12 | ||
| 12 | #include "core/file_sys/archive_extsavedata.h" | 13 | #include "core/file_sys/archive_extsavedata.h" |
| 13 | #include "core/file_sys/disk_archive.h" | 14 | #include "core/file_sys/disk_archive.h" |
diff --git a/src/core/file_sys/archive_savedata.cpp b/src/core/file_sys/archive_savedata.cpp index a92309377..f8acec977 100644 --- a/src/core/file_sys/archive_savedata.cpp +++ b/src/core/file_sys/archive_savedata.cpp | |||
| @@ -8,6 +8,7 @@ | |||
| 8 | #include "common/file_util.h" | 8 | #include "common/file_util.h" |
| 9 | #include "common/logging/log.h" | 9 | #include "common/logging/log.h" |
| 10 | #include "common/make_unique.h" | 10 | #include "common/make_unique.h" |
| 11 | #include "common/string_util.h" | ||
| 11 | 12 | ||
| 12 | #include "core/file_sys/archive_savedata.h" | 13 | #include "core/file_sys/archive_savedata.h" |
| 13 | #include "core/file_sys/disk_archive.h" | 14 | #include "core/file_sys/disk_archive.h" |
diff --git a/src/core/file_sys/archive_savedatacheck.cpp b/src/core/file_sys/archive_savedatacheck.cpp index e7e4fbf1d..def85d4c3 100644 --- a/src/core/file_sys/archive_savedatacheck.cpp +++ b/src/core/file_sys/archive_savedatacheck.cpp | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | #include "common/file_util.h" | 5 | #include "common/file_util.h" |
| 6 | #include "common/logging/log.h" | 6 | #include "common/logging/log.h" |
| 7 | #include "common/make_unique.h" | 7 | #include "common/make_unique.h" |
| 8 | #include "common/string_util.h" | ||
| 8 | 9 | ||
| 9 | #include "core/file_sys/archive_savedatacheck.h" | 10 | #include "core/file_sys/archive_savedatacheck.h" |
| 10 | #include "core/hle/service/fs/archive.h" | 11 | #include "core/hle/service/fs/archive.h" |
diff --git a/src/core/file_sys/archive_systemsavedata.cpp b/src/core/file_sys/archive_systemsavedata.cpp index 4fe785c97..9a9182afc 100644 --- a/src/core/file_sys/archive_systemsavedata.cpp +++ b/src/core/file_sys/archive_systemsavedata.cpp | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | #include "common/common_types.h" | 7 | #include "common/common_types.h" |
| 8 | #include "common/file_util.h" | 8 | #include "common/file_util.h" |
| 9 | #include "common/make_unique.h" | 9 | #include "common/make_unique.h" |
| 10 | #include "common/string_util.h" | ||
| 10 | 11 | ||
| 11 | #include "core/file_sys/archive_systemsavedata.h" | 12 | #include "core/file_sys/archive_systemsavedata.h" |
| 12 | #include "core/hle/service/fs/archive.h" | 13 | #include "core/hle/service/fs/archive.h" |
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp index 8b14edf00..6e608a858 100644 --- a/src/core/loader/loader.cpp +++ b/src/core/loader/loader.cpp | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | 6 | ||
| 7 | #include "common/logging/log.h" | 7 | #include "common/logging/log.h" |
| 8 | #include "common/make_unique.h" | 8 | #include "common/make_unique.h" |
| 9 | #include "common/string_util.h" | ||
| 9 | 10 | ||
| 10 | #include "core/file_sys/archive_romfs.h" | 11 | #include "core/file_sys/archive_romfs.h" |
| 11 | #include "core/hle/kernel/process.h" | 12 | #include "core/hle/kernel/process.h" |