summaryrefslogtreecommitdiffstats
path: root/src/core/core_cpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-26 22:17:18 +0200
committerGitHub <noreply@github.com>2018-09-26 22:17:18 +0200
commitc0445006af7f985df0f8ec04ac815ee0b8ffabeb (patch)
treeb85f6c839d042bcf9bfca4b0321d846aef74f5f5 /src/core/core_cpu.h
parentMerge pull request #1400 from lioncash/header (diff)
parentcore_cpu: Make arm_interface instances a std::unique_ptr (diff)
downloadyuzu-c0445006af7f985df0f8ec04ac815ee0b8ffabeb.tar
yuzu-c0445006af7f985df0f8ec04ac815ee0b8ffabeb.tar.gz
yuzu-c0445006af7f985df0f8ec04ac815ee0b8ffabeb.tar.bz2
yuzu-c0445006af7f985df0f8ec04ac815ee0b8ffabeb.tar.lz
yuzu-c0445006af7f985df0f8ec04ac815ee0b8ffabeb.tar.xz
yuzu-c0445006af7f985df0f8ec04ac815ee0b8ffabeb.tar.zst
yuzu-c0445006af7f985df0f8ec04ac815ee0b8ffabeb.zip
Diffstat (limited to 'src/core/core_cpu.h')
-rw-r--r--src/core/core_cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_cpu.h b/src/core/core_cpu.h
index 685532965..ee7e04abc 100644
--- a/src/core/core_cpu.h
+++ b/src/core/core_cpu.h
@@ -76,7 +76,7 @@ public:
private:
void Reschedule();
- std::shared_ptr<ARM_Interface> arm_interface;
+ std::unique_ptr<ARM_Interface> arm_interface;
std::shared_ptr<CpuBarrier> cpu_barrier;
std::shared_ptr<Kernel::Scheduler> scheduler;