diff options
| author | 2018-07-31 19:16:05 -0700 | |
|---|---|---|
| committer | 2018-07-31 19:16:05 -0700 | |
| commit | f5efac34428682189139ff63648014416f4b683c (patch) | |
| tree | 5f42e54895af9a3e5da3afaaf66c1d8948207320 /src/core/hle/kernel/thread.cpp | |
| parent | Merge pull request #879 from lioncash/audio (diff) | |
| parent | kernel: Remove unnecessary includes (diff) | |
| download | yuzu-f5efac34428682189139ff63648014416f4b683c.tar.gz yuzu-f5efac34428682189139ff63648014416f4b683c.tar.xz yuzu-f5efac34428682189139ff63648014416f4b683c.zip | |
Merge pull request #876 from lioncash/include
kernel: Remove unnecessary includes
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 94735c86e..93ea58a1e 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -4,8 +4,11 @@ | |||
| 4 | 4 | ||
| 5 | #include <algorithm> | 5 | #include <algorithm> |
| 6 | #include <cinttypes> | 6 | #include <cinttypes> |
| 7 | #include <list> | ||
| 8 | #include <vector> | 7 | #include <vector> |
| 8 | |||
| 9 | #include <boost/optional.hpp> | ||
| 10 | #include <boost/range/algorithm_ext/erase.hpp> | ||
| 11 | |||
| 9 | #include "common/assert.h" | 12 | #include "common/assert.h" |
| 10 | #include "common/common_types.h" | 13 | #include "common/common_types.h" |
| 11 | #include "common/logging/log.h" | 14 | #include "common/logging/log.h" |
| @@ -19,7 +22,6 @@ | |||
| 19 | #include "core/hle/kernel/handle_table.h" | 22 | #include "core/hle/kernel/handle_table.h" |
| 20 | #include "core/hle/kernel/kernel.h" | 23 | #include "core/hle/kernel/kernel.h" |
| 21 | #include "core/hle/kernel/memory.h" | 24 | #include "core/hle/kernel/memory.h" |
| 22 | #include "core/hle/kernel/mutex.h" | ||
| 23 | #include "core/hle/kernel/process.h" | 25 | #include "core/hle/kernel/process.h" |
| 24 | #include "core/hle/kernel/thread.h" | 26 | #include "core/hle/kernel/thread.h" |
| 25 | #include "core/hle/result.h" | 27 | #include "core/hle/result.h" |