diff options
| author | 2019-12-07 22:09:20 -0500 | |
|---|---|---|
| committer | 2019-12-07 22:37:05 -0500 | |
| commit | c3e43c7e812be54ee33d559cbe5283bd445897dc (patch) | |
| tree | c318346100fce803a23b298c0fd3a0e34accff41 /src/core/hle/kernel/mutex.cpp | |
| parent | Merge pull request #3195 from FernandoS27/clear-exclusive (diff) | |
| download | yuzu-c3e43c7e812be54ee33d559cbe5283bd445897dc.tar.gz yuzu-c3e43c7e812be54ee33d559cbe5283bd445897dc.tar.xz yuzu-c3e43c7e812be54ee33d559cbe5283bd445897dc.zip | |
kernel: Remove unnecessary includes
Over the course of the changes to the kernel code, a few includes are no
longer necessary, particularly with the change over to std::shared_ptr
from Boost's intrusive_ptr.
Diffstat (limited to 'src/core/hle/kernel/mutex.cpp')
| -rw-r--r-- | src/core/hle/kernel/mutex.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp index 061e9bcb0..eff4e45b0 100644 --- a/src/core/hle/kernel/mutex.cpp +++ b/src/core/hle/kernel/mutex.cpp | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <memory> | ||
| 5 | #include <utility> | 6 | #include <utility> |
| 6 | #include <vector> | 7 | #include <vector> |
| 7 | 8 | ||