summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/session.h
diff options
context:
space:
mode:
authorGravatar Lioncash2019-12-07 22:09:20 -0500
committerGravatar Lioncash2019-12-07 22:37:05 -0500
commitc3e43c7e812be54ee33d559cbe5283bd445897dc (patch)
treec318346100fce803a23b298c0fd3a0e34accff41 /src/core/hle/kernel/session.h
parentMerge pull request #3195 from FernandoS27/clear-exclusive (diff)
downloadyuzu-c3e43c7e812be54ee33d559cbe5283bd445897dc.tar.gz
yuzu-c3e43c7e812be54ee33d559cbe5283bd445897dc.tar.xz
yuzu-c3e43c7e812be54ee33d559cbe5283bd445897dc.zip
kernel: Remove unnecessary includes
Over the course of the changes to the kernel code, a few includes are no longer necessary, particularly with the change over to std::shared_ptr from Boost's intrusive_ptr.
Diffstat (limited to 'src/core/hle/kernel/session.h')
-rw-r--r--src/core/hle/kernel/session.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/session.h b/src/core/hle/kernel/session.h
index 5a9d4e9ad..15a5ac15f 100644
--- a/src/core/hle/kernel/session.h
+++ b/src/core/hle/kernel/session.h
@@ -6,9 +6,9 @@
6 6
7#include <memory> 7#include <memory>
8#include <string> 8#include <string>
9#include <utility>
9 10
10#include "core/hle/kernel/wait_object.h" 11#include "core/hle/kernel/wait_object.h"
11#include "core/hle/result.h"
12 12
13namespace Kernel { 13namespace Kernel {
14 14