diff options
author | Lioncash <mathew1800@gmail.com> | 2019-12-07 22:09:20 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-12-07 22:37:05 -0500 |
commit | c3e43c7e812be54ee33d559cbe5283bd445897dc (patch) | |
tree | c318346100fce803a23b298c0fd3a0e34accff41 /src/core/hle/kernel/mutex.cpp | |
parent | 4bbb22a477d72cc5bcb08fbacce7166ced1907df (diff) |
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 061e9bcb02..eff4e45b05 100644 --- a/src/core/hle/kernel/mutex.cpp +++ b/src/core/hle/kernel/mutex.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <memory> #include <utility> #include <vector> |