diff options
| author | 2014-09-10 18:44:08 -0400 | |
|---|---|---|
| committer | 2014-09-10 18:44:08 -0400 | |
| commit | d79fe3ebaadbc19e8ffe5075bad51a9735aafb38 (patch) | |
| tree | 49d8b9dc37a2f9a541aef587c7bb50f9fe3c01f7 /src/core/hle/kernel | |
| parent | Merge pull request #104 from archshift/removal (diff) | |
| parent | core: Prune redundant includes (diff) | |
| download | yuzu-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/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 | ||