diff options
| author | 2020-01-30 18:21:10 -0500 | |
|---|---|---|
| committer | 2020-01-30 18:30:57 -0500 | |
| commit | 16e7b7b83d5a812cb389f808049ede3a75b8bdc3 (patch) | |
| tree | c2793ba2fa5052bba99d4bcb1b5ef9767a22ed56 /src/core | |
| parent | kernel/physical_core: Remove unused kernel reference member variable (diff) | |
| download | yuzu-16e7b7b83d5a812cb389f808049ede3a75b8bdc3.tar.gz yuzu-16e7b7b83d5a812cb389f808049ede3a75b8bdc3.tar.xz yuzu-16e7b7b83d5a812cb389f808049ede3a75b8bdc3.zip | |
core/cpu_manager: Remove unused includes
Nothing from these headers are used within this source file, so we can
remove them.
Diffstat (limited to 'src/core')
| -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 @@ | |||
| 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 | ||
| 14 | namespace Core { | 12 | namespace Core { |
| 15 | 13 | ||