diff options
author | bunnei <bunneidev@gmail.com> | 2015-07-12 23:25:55 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-07-12 23:25:55 +0200 |
commit | b6719ec922ce807510932887b80e61aeeec2fc7b (patch) | |
tree | e51bf1dcb7fb474725329579ce2c0bd0374a7ffe /src/core/hle/kernel | |
parent | Kernel: Add CodeSet case to Object::IsWaitable (diff) | |
parent | Core: Fix applet includes using iwyu. (diff) | |
download | yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.gz yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.bz2 yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.lz yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.xz yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.zst yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/kernel/process.h | 1 | ||||
-rw-r--r-- | src/core/hle/kernel/shared_memory.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 92fa0fa6f..83d3aceae 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -6,6 +6,7 @@ #include <bitset> #include <cstddef> +#include <memory> #include <string> #include <boost/container/static_vector.hpp> diff --git a/src/core/hle/kernel/shared_memory.h b/src/core/hle/kernel/shared_memory.h index 204266896..7a2922776 100644 --- a/src/core/hle/kernel/shared_memory.h +++ b/src/core/hle/kernel/shared_memory.h @@ -4,9 +4,12 @@ #pragma once +#include <string> + #include "common/common_types.h" #include "core/hle/kernel/kernel.h" +#include "core/hle/result.h" namespace Kernel { |