summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-21 14:40:28 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-28 01:36:54 +0200
commit596b7c4f63e38d275b6a056d6125c0027a1376e7 (patch)
treefb0ab64194f7beb8ddeab145db68d27401ea9790 /src/core/hle/kernel/kernel.h
parentCommon: Cleanup memory and misc includes. (diff)
downloadyuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar.gz
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar.bz2
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar.lz
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar.xz
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.tar.zst
yuzu-596b7c4f63e38d275b6a056d6125c0027a1376e7.zip
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index 64595f758..b29260b5d 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -4,10 +4,11 @@
#pragma once
-#include <boost/intrusive_ptr.hpp>
+#include <boost/smart_ptr/intrusive_ptr.hpp>
+#include <algorithm>
#include <array>
-#include <memory>
+#include <cstddef>
#include <string>
#include <vector>
@@ -16,8 +17,6 @@
#include "core/hle/hle.h"
#include "core/hle/result.h"
-struct ApplicationInfo;
-
namespace Kernel {
class Thread;