diff options
| author | 2018-09-06 13:51:57 -0400 | |
|---|---|---|
| committer | 2018-09-06 13:53:23 -0400 | |
| commit | a859a35ec861e63f8f4681665c6de132a5b159bb (patch) | |
| tree | 74a3c6225bf4e9929aa302eadbf517dece93fb27 /src | |
| parent | Merge pull request #1248 from degasus/shader_fix (diff) | |
| download | yuzu-a859a35ec861e63f8f4681665c6de132a5b159bb.tar.gz yuzu-a859a35ec861e63f8f4681665c6de132a5b159bb.tar.xz yuzu-a859a35ec861e63f8f4681665c6de132a5b159bb.zip | |
file_sys/patch_manager: Add missing includes
These includes were previously being satisfied indirectly.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/file_sys/patch_manager.cpp | 4 | ||||
| -rw-r--r-- | src/core/file_sys/patch_manager.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp index 40675de35..6cecab336 100644 --- a/src/core/file_sys/patch_manager.cpp +++ b/src/core/file_sys/patch_manager.cpp | |||
| @@ -2,6 +2,10 @@ | |||
| 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 <array> | ||
| 6 | #include <cstddef> | ||
| 7 | |||
| 8 | #include "common/logging/log.h" | ||
| 5 | #include "core/file_sys/content_archive.h" | 9 | #include "core/file_sys/content_archive.h" |
| 6 | #include "core/file_sys/control_metadata.h" | 10 | #include "core/file_sys/control_metadata.h" |
| 7 | #include "core/file_sys/patch_manager.h" | 11 | #include "core/file_sys/patch_manager.h" |
diff --git a/src/core/file_sys/patch_manager.h b/src/core/file_sys/patch_manager.h index 28c7ae136..b521977b2 100644 --- a/src/core/file_sys/patch_manager.h +++ b/src/core/file_sys/patch_manager.h | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <map> | 7 | #include <map> |
| 8 | #include <memory> | ||
| 8 | #include <string> | 9 | #include <string> |
| 9 | #include "common/common_types.h" | 10 | #include "common/common_types.h" |
| 10 | #include "core/file_sys/nca_metadata.h" | 11 | #include "core/file_sys/nca_metadata.h" |