summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-07-12 22:10:37 +0100
committerGravatar Emmanuel Gil Peyrot2015-07-12 22:10:37 +0100
commitfe909b3b5adb5e1306a1c85e6e1275424a6371b2 (patch)
tree28cd4fbd98402187dbaa0a87e14eabaff88ff8d0 /src/core/hle/kernel
parentMerge pull request #823 from Subv/applets_drawing (diff)
downloadyuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.tar.gz
yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.tar.xz
yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.zip
Core: Fix applet includes using iwyu.
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/process.h1
-rw-r--r--src/core/hle/kernel/shared_memory.h3
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 @@
6 6
7#include <bitset> 7#include <bitset>
8#include <cstddef> 8#include <cstddef>
9#include <memory>
9#include <string> 10#include <string>
10 11
11#include <boost/container/static_vector.hpp> 12#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 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <string>
8
7#include "common/common_types.h" 9#include "common/common_types.h"
8 10
9#include "core/hle/kernel/kernel.h" 11#include "core/hle/kernel/kernel.h"
12#include "core/hle/result.h"
10 13
11namespace Kernel { 14namespace Kernel {
12 15