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/mutex.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/mutex.cpp')
| -rw-r--r-- | src/core/hle/kernel/mutex.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp index feb7b88d2..d6b12f9aa 100644 --- a/src/core/hle/kernel/mutex.cpp +++ b/src/core/hle/kernel/mutex.cpp | |||
| @@ -3,8 +3,11 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <map> | 5 | #include <map> |
| 6 | #include <utility> | ||
| 6 | #include <vector> | 7 | #include <vector> |
| 8 | |||
| 7 | #include <boost/range/algorithm_ext/erase.hpp> | 9 | #include <boost/range/algorithm_ext/erase.hpp> |
| 10 | |||
| 8 | #include "common/assert.h" | 11 | #include "common/assert.h" |
| 9 | #include "core/core.h" | 12 | #include "core/core.h" |
| 10 | #include "core/hle/kernel/errors.h" | 13 | #include "core/hle/kernel/errors.h" |
| @@ -13,6 +16,7 @@ | |||
| 13 | #include "core/hle/kernel/mutex.h" | 16 | #include "core/hle/kernel/mutex.h" |
| 14 | #include "core/hle/kernel/object_address_table.h" | 17 | #include "core/hle/kernel/object_address_table.h" |
| 15 | #include "core/hle/kernel/thread.h" | 18 | #include "core/hle/kernel/thread.h" |
| 19 | #include "core/hle/result.h" | ||
| 16 | 20 | ||
| 17 | namespace Kernel { | 21 | namespace Kernel { |
| 18 | 22 | ||