summaryrefslogtreecommitdiff
path: root/src/core/cpu_manager.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2020-01-30 23:33:02 -0500
committerGravatar GitHub2020-01-30 23:33:02 -0500
commit6b5b01b29f51cf74c0735867f800afb9672729d9 (patch)
tree21f251c154835bc82f24a9b82a048f45e0495a7b /src/core/cpu_manager.cpp
parentMerge pull request #3365 from yuzu-emu/revert-3151-fix-korean (diff)
parentkernel/physical_core: Make use of std::unique_ptr (diff)
downloadyuzu-6b5b01b29f51cf74c0735867f800afb9672729d9.tar.gz
yuzu-6b5b01b29f51cf74c0735867f800afb9672729d9.tar.xz
yuzu-6b5b01b29f51cf74c0735867f800afb9672729d9.zip
Merge pull request #3363 from lioncash/unique_ptr
kernel/physical_core: Make use of std::unique_ptr instead of std::shared_ptr
Diffstat (limited to 'src/core/cpu_manager.cpp')
-rw-r--r--src/core/cpu_manager.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/cpu_manager.cpp b/src/core/cpu_manager.cpp
index 752534868..70ddbdcca 100644
--- a/src/core/cpu_manager.cpp
+++ b/src/core/cpu_manager.cpp
@@ -2,14 +2,12 @@
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 "common/assert.h"
6#include "core/arm/exclusive_monitor.h" 5#include "core/arm/exclusive_monitor.h"
7#include "core/core.h" 6#include "core/core.h"
8#include "core/core_manager.h" 7#include "core/core_manager.h"
9#include "core/core_timing.h" 8#include "core/core_timing.h"
10#include "core/cpu_manager.h" 9#include "core/cpu_manager.h"
11#include "core/gdbstub/gdbstub.h" 10#include "core/gdbstub/gdbstub.h"
12#include "core/settings.h"
13 11
14namespace Core { 12namespace Core {
15 13