diff options
author | bunnei <bunneidev@gmail.com> | 2020-01-30 23:33:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 23:33:02 -0500 |
commit | 6b5b01b29f51cf74c0735867f800afb9672729d9 (patch) | |
tree | 21f251c154835bc82f24a9b82a048f45e0495a7b /src/core/cpu_manager.cpp | |
parent | 1948fc085804f000400ba7c35e57972a36ea75bc (diff) | |
parent | 2de2bb980e8b032aeb6413adaaed6701e76e73f7 (diff) |
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.cpp | 2 |
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 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include "common/assert.h" #include "core/arm/exclusive_monitor.h" #include "core/core.h" #include "core/core_manager.h" #include "core/core_timing.h" #include "core/cpu_manager.h" #include "core/gdbstub/gdbstub.h" -#include "core/settings.h" namespace Core { |