summaryrefslogtreecommitdiff
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorGravatar bunnei2014-09-10 18:44:08 -0400
committerGravatar bunnei2014-09-10 18:44:08 -0400
commitd79fe3ebaadbc19e8ffe5075bad51a9735aafb38 (patch)
tree49d8b9dc37a2f9a541aef587c7bb50f9fe3c01f7 /src/core/hle/service
parentMerge pull request #104 from archshift/removal (diff)
parentcore: Prune redundant includes (diff)
downloadyuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.tar.gz
yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.tar.xz
yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.zip
Merge pull request #103 from archshift/prune
Prune redundant includes
Diffstat (limited to 'src/core/hle/service')
-rw-r--r--src/core/hle/service/fs.cpp2
-rw-r--r--src/core/hle/service/gsp.cpp1
-rw-r--r--src/core/hle/service/ndm.cpp2
-rw-r--r--src/core/hle/service/service.cpp5
-rw-r--r--src/core/hle/service/srv.cpp1
5 files changed, 0 insertions, 11 deletions
diff --git a/src/core/hle/service/fs.cpp b/src/core/hle/service/fs.cpp
index 5eabf36ad..9e1998b0f 100644
--- a/src/core/hle/service/fs.cpp
+++ b/src/core/hle/service/fs.cpp
@@ -4,8 +4,6 @@
4 4
5#include "common/common.h" 5#include "common/common.h"
6 6
7#include "core/loader/loader.h"
8#include "core/hle/hle.h"
9#include "core/hle/service/fs.h" 7#include "core/hle/service/fs.h"
10#include "core/hle/kernel/archive.h" 8#include "core/hle/kernel/archive.h"
11 9
diff --git a/src/core/hle/service/gsp.cpp b/src/core/hle/service/gsp.cpp
index 46c5a8ddd..accbe84e3 100644
--- a/src/core/hle/service/gsp.cpp
+++ b/src/core/hle/service/gsp.cpp
@@ -7,7 +7,6 @@
7#include "common/bit_field.h" 7#include "common/bit_field.h"
8 8
9#include "core/mem_map.h" 9#include "core/mem_map.h"
10#include "core/hle/hle.h"
11#include "core/hle/kernel/event.h" 10#include "core/hle/kernel/event.h"
12#include "core/hle/kernel/shared_memory.h" 11#include "core/hle/kernel/shared_memory.h"
13#include "core/hle/service/gsp.h" 12#include "core/hle/service/gsp.h"
diff --git a/src/core/hle/service/ndm.cpp b/src/core/hle/service/ndm.cpp
index 48755b6a7..f6af0a153 100644
--- a/src/core/hle/service/ndm.cpp
+++ b/src/core/hle/service/ndm.cpp
@@ -2,8 +2,6 @@
2// Licensed under GPLv2 2// Licensed under GPLv2
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/log.h"
6
7#include "core/hle/hle.h" 5#include "core/hle/hle.h"
8#include "core/hle/service/ndm.h" 6#include "core/hle/service/ndm.h"
9 7
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 00ac1c9c6..9eb1726aa 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -3,11 +3,8 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/common.h" 5#include "common/common.h"
6#include "common/log.h"
7#include "common/string_util.h" 6#include "common/string_util.h"
8 7
9#include "core/hle/hle.h"
10
11#include "core/hle/service/service.h" 8#include "core/hle/service/service.h"
12#include "core/hle/service/apt.h" 9#include "core/hle/service/apt.h"
13#include "core/hle/service/fs.h" 10#include "core/hle/service/fs.h"
@@ -16,8 +13,6 @@
16#include "core/hle/service/ndm.h" 13#include "core/hle/service/ndm.h"
17#include "core/hle/service/srv.h" 14#include "core/hle/service/srv.h"
18 15
19#include "core/hle/kernel/kernel.h"
20
21namespace Service { 16namespace Service {
22 17
23Manager* g_manager = nullptr; ///< Service manager 18Manager* g_manager = nullptr; ///< Service manager
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index 23be3cf2c..eb2c73f93 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -4,7 +4,6 @@
4 4
5#include "core/hle/hle.h" 5#include "core/hle/hle.h"
6#include "core/hle/service/srv.h" 6#include "core/hle/service/srv.h"
7#include "core/hle/service/service.h"
8#include "core/hle/kernel/event.h" 7#include "core/hle/kernel/event.h"
9 8
10//////////////////////////////////////////////////////////////////////////////////////////////////// 9////////////////////////////////////////////////////////////////////////////////////////////////////