diff options
| author | 2014-09-08 17:52:00 -0700 | |
|---|---|---|
| committer | 2014-09-08 17:54:14 -0700 | |
| commit | 6e606c515f56b456a8031b235fd4f8d8453483a4 (patch) | |
| tree | 1e603b1ed4c0c65db72dc74b7142c622df41d069 /src/core/hle/kernel | |
| parent | common: Prune all redundant includes (diff) | |
| download | yuzu-6e606c515f56b456a8031b235fd4f8d8453483a4.tar.gz yuzu-6e606c515f56b456a8031b235fd4f8d8453483a4.tar.xz yuzu-6e606c515f56b456a8031b235fd4f8d8453483a4.zip | |
core: Prune redundant includes
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/archive.cpp | 1 | ||||
| -rw-r--r-- | src/core/hle/kernel/kernel.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 3 |
3 files changed, 0 insertions, 6 deletions
diff --git a/src/core/hle/kernel/archive.cpp b/src/core/hle/kernel/archive.cpp index 1596367c3..20536f40f 100644 --- a/src/core/hle/kernel/archive.cpp +++ b/src/core/hle/kernel/archive.cpp | |||
| @@ -7,7 +7,6 @@ | |||
| 7 | 7 | ||
| 8 | #include "core/file_sys/archive.h" | 8 | #include "core/file_sys/archive.h" |
| 9 | #include "core/hle/service/service.h" | 9 | #include "core/hle/service/service.h" |
| 10 | #include "core/hle/kernel/kernel.h" | ||
| 11 | #include "core/hle/kernel/archive.h" | 10 | #include "core/hle/kernel/archive.h" |
| 12 | 11 | ||
| 13 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 12 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index a4a258875..e56f1879e 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/src/core/hle/kernel/kernel.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 <string.h> | ||
| 6 | |||
| 7 | #include "common/common.h" | 5 | #include "common/common.h" |
| 8 | 6 | ||
| 9 | #include "core/core.h" | 7 | #include "core/core.h" |
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 8bd9ca1a1..33c0b2a47 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -3,10 +3,8 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | 5 | #include <algorithm> |
| 6 | #include <cstdio> | ||
| 7 | #include <list> | 6 | #include <list> |
| 8 | #include <map> | 7 | #include <map> |
| 9 | #include <string> | ||
| 10 | #include <vector> | 8 | #include <vector> |
| 11 | 9 | ||
| 12 | #include "common/common.h" | 10 | #include "common/common.h" |
| @@ -15,7 +13,6 @@ | |||
| 15 | #include "core/core.h" | 13 | #include "core/core.h" |
| 16 | #include "core/mem_map.h" | 14 | #include "core/mem_map.h" |
| 17 | #include "core/hle/hle.h" | 15 | #include "core/hle/hle.h" |
| 18 | #include "core/hle/svc.h" | ||
| 19 | #include "core/hle/kernel/kernel.h" | 16 | #include "core/hle/kernel/kernel.h" |
| 20 | #include "core/hle/kernel/thread.h" | 17 | #include "core/hle/kernel/thread.h" |
| 21 | 18 | ||